diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /50/CH2/EX2.11 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '50/CH2/EX2.11')
-rwxr-xr-x | 50/CH2/EX2.11/ex_11.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/50/CH2/EX2.11/ex_11.sce b/50/CH2/EX2.11/ex_11.sce new file mode 100755 index 000000000..92b538cc7 --- /dev/null +++ b/50/CH2/EX2.11/ex_11.sce @@ -0,0 +1,25 @@ + // The equation x^3-5*x+1==0 has real roots.
+ // the graph of this function can be observed here.
+xset('window',10);
+x=-2:.01:4; // defining the range of x.
+deff('[y]=f(x)','y=x^3-5*x+1'); //defining the cunction.
+y=feval(x,f);
+
+a=gca();
+
+a.y_location = "origin";
+
+a.x_location = "origin";
+plot(x,y) // instruction to plot the graph
+title(' y = x^3-5*x+1')
+
+// from the above plot we can infre that the function has roots between
+// the intervals (0,1),(2,3).
+// since we have been asked for the smallest positive root of the equation,
+// we are intrested on the interval (0,1)
+
+
+ //sollution by muller method to 3 iterations.
+
+muller3(0,.5,1,f)
+
|