diff options
Diffstat (limited to '27/CH10/EX10.7.3/Example_10_7_3.sce')
-rwxr-xr-x | 27/CH10/EX10.7.3/Example_10_7_3.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/27/CH10/EX10.7.3/Example_10_7_3.sce b/27/CH10/EX10.7.3/Example_10_7_3.sce new file mode 100755 index 000000000..b7449ed3e --- /dev/null +++ b/27/CH10/EX10.7.3/Example_10_7_3.sce @@ -0,0 +1,21 @@ +//Example 10.7.2 Page 386
+//Non-Linear Dynamics and Chaos, First Indian Edition Print 2007
+//Steven H. Strogatz
+clear;
+clear;
+clc;
+close;
+
+x=poly(0,"x");
+f = (x^2)+3*x-2; //Defining Polynomial--> x(dot)=x^2 -1. Let this be f(x)
+disp("Fixed Points are :")
+y = roots(f)
+
+// As seen earlier period 2 cycle occours at r=3.
+
+//Hence,
+
+r2=y(1)+3
+
+
+//End of Example.
\ No newline at end of file |