diff options
Diffstat (limited to '149/CH4/EX4.52')
-rwxr-xr-x | 149/CH4/EX4.52/ques52.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/149/CH4/EX4.52/ques52.sce b/149/CH4/EX4.52/ques52.sce new file mode 100755 index 000000000..a4128a8bc --- /dev/null +++ b/149/CH4/EX4.52/ques52.sce @@ -0,0 +1,10 @@ +//error
+//ques52
+disp('To find the maxima and minima of given function put f1(x)=0');
+syms x
+//x=poly(0,'x');
+f=3*x^4-2*x^3-6*x^2+6*x+1;
+k=diff(f,x);
+x=poly(0,'x');
+k=eval(k);
+
|