0

A rational function f(x) has the following power series representation for the interval $-3<x<3$. $f(x) = x - \frac{x^2}{3} + \frac{x^3}{3^2} +...$. Find a closed-form expression for f(x).

Now, I found that $f(x)=\sum_{n=1}^\infty (\frac{-1}{3})^{n-1}(x)^n$, but how do I continue from here.

user2250537
  • 1,101

1 Answers1

1

If you need the terms to have the same exponent for everything, just make it happen:

$\begin{array}\\ f(x) &=\sum_{n=1}^\infty (\frac{-1}{3})^{n-1}(x)^n\\ &=x\sum_{n=1}^\infty (\frac{-1}{3})^{n-1}(x)^{n-1} \qquad\text{(pull x out so exponents the same)}\\ &=x\sum_{n=0}^\infty (\frac{-1}{3})^{n}(x)^{n} \qquad\text{(shift exponents)}\\ &=x\frac1{1-\frac{-x}{3}}\\ &=\frac{x}{1+\frac{x}{3}}\\ &=\frac{3x}{3+x} \qquad\text{(this is optional)}\\ \end{array} $

marty cohen
  • 107,799