summaryrefslogtreecommitdiff
path: root/149/CH4/EX4.61
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /149/CH4/EX4.61
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '149/CH4/EX4.61')
-rwxr-xr-x149/CH4/EX4.61/ques61.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/149/CH4/EX4.61/ques61.sce b/149/CH4/EX4.61/ques61.sce
new file mode 100755
index 000000000..5a6537265
--- /dev/null
+++ b/149/CH4/EX4.61/ques61.sce
@@ -0,0 +1,13 @@
+//ques 61
+clc
+disp('to find the assymptote of given curve ');
+syms x y
+f=x^2*y^2-x^2*y-x*y^2+x+y+1;
+//a=degrees(f,x);
+f1=coeffs(f,x,2);
+disp('assymptotes parallel to x-xis is given by f1=0 where f1 is :');
+disp(factor(f1));
+f2=coeffs(f,y,2);
+disp('assymptotes parallel to y-axis is given by f2=0 and f2 is :');
+disp(factor(f2));
+ \ No newline at end of file