diff options
Diffstat (limited to '149/CH4/EX4.48/ques48.sce')
-rwxr-xr-x | 149/CH4/EX4.48/ques48.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/149/CH4/EX4.48/ques48.sce b/149/CH4/EX4.48/ques48.sce new file mode 100755 index 000000000..d24dccc2d --- /dev/null +++ b/149/CH4/EX4.48/ques48.sce @@ -0,0 +1,14 @@ +//ques48
+disp('centre of curvature of given cycloid ');
+syms a t
+x=a*(t-sin(t));
+y=a*(1-cos(t));
+y1=diff(y,t,1);
+y2=diff(y,t,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);
+disp('which another parametric equation of cycloid ');
|