How do you find a power series representation for #f(x)=1/(1+x)^3#?

1 Answer
Sep 24, 2015

Oh... I remember this one. Yeah, expect a long answer with this one.

I got:

#1/2sum_(n=0)^N (n+1)(n+2)(-x)^n = 1/(1+x)^3#

#= 1 - 3x + 6x^2 - 10x^3 + ...#

for some arbitrarily large finite #N#.


So, what you would do is start from the one series you should have been taught, which was:

#\mathbf(sum_(n = 0)^N (x"'")^n = 1/(1-x"'"))#

where #x'# can be any variable and #N# is arbitrarily large and finite. Notice how #1+x = 1-(-x)#, meaning that #x' = -x# for this instance.

What you could do is figure out how to go from the original function to the function whose power series you DO know.

#color(highlight)(int)1/(1+x)^3dx = ((1+x)^-2)/-2 = -1/(2(1+x)^2)#

#1/2 color(highlight)(int) -1/(1+x)^2dx = 1/2*1/(1+x)#

Then, to achieve the form #1/(1-x')#:

#1/(2(1+x))*color(highlight)(2) = 1/(1-(-x))#

Therefore, what you have just done is:

1. Integrated the original function
2. Integrated the resultant function
3. Multiplied by 2

Note that you will have to reverse these steps, so keep that in mind.

Now, we can proceed by writing out the power series for #1/(1-(-x))#:

#= sum_(n = 0)^N (-x)^n = 1 - x + x^2 - x^3 + ...#

Next, we operate on the series to achieve the original function again.

To get the original function back, we have to undo what we did to the original function that allowed us to get to the series which we know the answer to, because operating on a power series mirrors operating on the function that is represented by said power series.

Therefore, we have to reverse the steps we performed earlier, but now on the power series rather than the function. To do this:

1. Divide by 2
2. Take the first derivative of the resultant function
3. Take the first derivative of the resultant function to get back to the original function

Then, we should have achieved the power series for #1/(1+x)^3#. We get:

1. Divide by 2

#color(highlight)(1/2)*[1 - x + x^2 - x^3 + x^4 - x^5]#

#= 1/2 sum_(n=0)^N (-x)^n#

#= 1/2 - x/2 + x^2/2 - x^3/2 + x^4/2 - x^5/2 + ...#

2. Take the first derivative of the resultant function (remember that the index increases by #1# now)

#= color(highlight)(d/(dx))[ sum_(n=0)^N (-x)^n / 2]#

#= color(highlight)(d/(dx))[1/2 - x/2 + x^2/2 - x^3/2 + x^4/2 - x^5/2 + ...]#

#= cancel(0) - 1/2 + x - 3/2 x^2 + 2x^3 - 5/2 x^4 + ...#

3. Take the first derivative of the resultant function to get back to the original function (remember that the index increases by #1# again, since the first term disappears)

#= color(highlight)(d/(dx))[ sum_(n=1)^N (-n(-x)^(n-1)) / 2]#

#= color(highlight)(d/(dx))[0 - 1/2 + x - 3/2 x^2 + 2x^3 - 5/2 x^4 + ...]#

#= cancel(0 - 0) + 1 - 3x + 6x^2 - 10x^3 + ...#

And there you have it!

#color(blue)(1/(1+x)^3)#

#= color(highlight)(1/2d/(dx)d/(dx)) [1/(1-(-x))]#

#= color(highlight)(d/(dx))[sum_(n=1)^N (-n(-x)^(n-1)) / 2]#

#= 1/2sum_(n=2)^N n(n-1)(-x)^(n-2)#

Finally, if we shift the index so that #n# starts at #0#, then the terms with #n# become #n+2#, #n+1#, and #(-x)^n#, respectively.

#= color(blue)(1/2sum_(n=0)^N (n+2)(n+1)(-x)^n)#

#= color(blue)(1 - 3x + 6x^2 - 10x^3 + ...)#

with #|x| < 1#.

and Wolfram Alpha agrees with this answer.