blob: 5775b1e4d41977808d88fc3c010a44907eefd0c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//qus47
disp('The centre of curvature');
syms x a y
y=2*(a*x)^0.5;
y1=diff(y,x,1);
y2=diff(y,x,2);
xx=x-y1*(1+y1)^2/y2;
yy=y+(1+y1^2)/y2;
disp('the coordinates x,y are resp :');
disp(xx);
disp(yy);
|