diff options
Diffstat (limited to '1553/CH9/EX9.3')
-rw-r--r-- | 1553/CH9/EX9.3/9Ex3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1553/CH9/EX9.3/9Ex3.sce b/1553/CH9/EX9.3/9Ex3.sce new file mode 100644 index 000000000..97d3cc56e --- /dev/null +++ b/1553/CH9/EX9.3/9Ex3.sce @@ -0,0 +1,11 @@ +//chapter 9 Ex 3
+
+clc;
+clear;
+close;
+x=poly(0,'x');
+//let the answer to be found out be ans
+mprintf("The quotient is:\n");
+ans=(x^(-1)-1)/(x-1)
+disp(ans)
+
|