summaryrefslogtreecommitdiff
path: root/149/CH4/EX4.5/ques5.sce
diff options
context:
space:
mode:
Diffstat (limited to '149/CH4/EX4.5/ques5.sce')
-rwxr-xr-x149/CH4/EX4.5/ques5.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/149/CH4/EX4.5/ques5.sce b/149/CH4/EX4.5/ques5.sce
new file mode 100755
index 000000000..2a705b8e5
--- /dev/null
+++ b/149/CH4/EX4.5/ques5.sce
@@ -0,0 +1,17 @@
+//ques4.1
+//clear
+//cd SCI
+//cd ("..")
+//cd ("..")
+//exec symbolic.sce
+clc
+disp(' we have to find yn for F=cosxcos2xcos3x ');
+syms x
+F=x/((x-1)*(2*x+3));
+n=input('Enter the order of differentiation : ");
+disp('calculating yn ');
+yn=diff(F,x,n)
+disp('the expression for yn is ');
+disp(yn);
+
+