summaryrefslogtreecommitdiff
path: root/1670/CH9/EX9.8/9_8.sce
blob: 2a07de6344938bd6320fff7112d80fec8eeacc98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//Example 9.8
//Recurrence formula
//Page no. 292
clc;clear;close;

x=poly(0,'x')
n=2;
f=x^(n)-5*x^(n-1)+6*x^(n-2);
z=roots(f)
disp(z,f)
printf('\n\n')
printf('            n       n\nf(n) = ')
for i=1:n
    printf('c%i(%g)',i,z(i))
    if i~=n then
        printf(' + ')
    end
end