From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 149/CH4/EX4.4.1/ques4_1.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 149/CH4/EX4.4.1/ques4_1.sce (limited to '149/CH4/EX4.4.1') diff --git a/149/CH4/EX4.4.1/ques4_1.sce b/149/CH4/EX4.4.1/ques4_1.sce new file mode 100755 index 000000000..972cc4ad8 --- /dev/null +++ b/149/CH4/EX4.4.1/ques4_1.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=cos(x)*cos(2*x)*cos(3*x); +n=input('Enter the order of differentiation "); +disp('calculating yn '); +yn=diff(F,x,n) +disp('the expression for yn is '); +disp(yn); + + -- cgit