summaryrefslogtreecommitdiff
path: root/149/CH4/EX4.32/ques32.sce
blob: 85964808f341b7ee3ca237b2c958505656e39969 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//ques 32
disp('Equation of tangent');
syms x a y;
f=(a^(2/3)-x^(2/3))^(3/2);
s=diff(f,x);

Y1=s*(-x)+y;
X1=-y/s*x;
g=x-(Y1-s*(X1-x));
disp('Equation is g=0 where g is');
disp(g);