MATH 134 -- Intensive Calculus for Science

April 3, 2002

Geometric series and polynomial approximations.

Our formula for the sum of an infinite geometric series

shows that if abs(x) < 1 then

sum(x^k,k = 0 .. infinity) = 1+x+x^2 + ... = 1/(1-x)

If we stop the summation after a finite number of terms,

the result is a polynomial that can be thought of as a

simple polynomial approximating function for the (more)

complicated rational function r(x) = 1/(1-x) . Here are some

graphs showing how this works. First the polynomial 1 + x

and r( x ) -- the rational function has a vertical asymptote

at x = 1, so we "cut it off before then":

> plot({1+x,1/(1-x)},x = -1..0.9,color=blue);

[Maple Plot]

Now add one more term into the polynomial -- 1+x+x^2

> plot({1+x+x^2,1/(1-x)},x = -1..0.9,color=blue);

[Maple Plot]

One more term -- 1+x+x^2+x^3

> plot({1+x+x^2+x^3,1/(1-x)},x = -1..0.9,color=blue);

[Maple Plot]

One more -- 1+x+x^2+x^3+x^4

> plot({1+x+x^2+x^3+x^4,1/(1-x)},x = -1..0.9,color=blue);

[Maple Plot]

As we increase the degree of the polynomial, note how its graph is getting closer to

the graph y = 1/(1-x)