Input ¨Order:¨,O
O+1→O
O→dim(L₁)
O→dim(L₂)
O→dim(L₃)
For(A,1,0)
Input ¨Coefficient: ¨,C
C→L₁(A)
End
Input ¨Num Of Real Roots: ¨,N
N→dim(L₂)
For(A,1,N)
Input ¨Root: ¨,R
R→L₂(A)
End
For(A,1,N)
L₁(1)→L₃(1)
For(B,1,O-1)
L₂(A)*L₃(B)→L₄(B+1)
L₁(B+1)+L₄(B+1)→L₃(B+1)
End
L₃→L₁
O-1→O
Disp L₁
End
Synthetic Division!!!!!!!!!
Summary:
I created a program to do synthetic division!