Monday, March 23, 2009

Numerical Analysis

POLYNOMIAL DEFLATION PROGRAM LOGIC

1.Input the coefficients in an array.

2. Perform the following Algorithm on the array.

r = a[n];

a[n]=0;

do

s=a[i];

a[i]=r;

r = s + r * t;

End do

'n' is the degree of the polynomial, 't' is the root , 'r' & 's' are the coefficeints.


3.Display the values in the array.

No comments:

Is This You?