summaryrefslogtreecommitdiff
path: root/1553/CH9/EX9.3/9Ex3.sce
blob: 97d3cc56ed7bb009cbc736c3b6313948f8b209f9 (plain)
1
2
3
4
5
6
7
8
9
10
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)