Substitution method for power series summation: Difference between revisions
(Created page with "==Description of the method== The substitution method for power series summation is a method that can be used to convert one power series summation problem into another one. ...") |
|||
Line 69: | Line 69: | ||
| <math>\sum_{k=0}^\infty \frac{3^{2k}x^{3k}}{k!}</math> || <math>u = 9x^3</math> || combined || <math>\sum_{k=0}^\infty \frac{u^k}{k!}</math> || <math>e^u</math> || <math>e^{9x^3}</math> | | <math>\sum_{k=0}^\infty \frac{3^{2k}x^{3k}}{k!}</math> || <math>u = 9x^3</math> || combined || <math>\sum_{k=0}^\infty \frac{u^k}{k!}</math> || <math>e^u</math> || <math>e^{9x^3}</math> | ||
|- | |- | ||
| <math>\sum_{k=0}^\infty \frac{x^{14k}}{(2k)!}</math> || <math>u = x^7</math> (we want the exponent on it to match the expression under the factorial) || power || <math>\sum_{k=0}^\infty u^{2k}}{(2k)!}</math> || <math>\cosh u</math> || <math>\cosh(x^7)</math> | | <math>\sum_{k=0}^\infty \frac{x^{14k}}{(2k)!}</math> || <math>u = x^7</math> (we want the exponent on it to match the expression under the factorial) || power || <math>\sum_{k=0}^\infty \frac{u^{2k}}{(2k)!}</math> || <math>\cosh u</math> || <math>\cosh(x^7)</math> | ||
|} | |} | ||
Line 81: | Line 81: | ||
| <math>\sum_{k=0}^\infty \frac{x^{14k + 2}}{(2k + 1)!}</math> || first multiply/divide by <math>x^5</math> (to make the exponent <math>7(2k + 1)</math>, then do <math>u = x^7</math> || power || <math>\frac{1}{x^5} \sum_{k=0}^\infty \frac{u^{2k + 1}}{(2k + 1)!}</math> || <math>\frac{\sinh u}{x^5}</math> || <math>\frac{\sinh(x^7)}{x^5}</math> | | <math>\sum_{k=0}^\infty \frac{x^{14k + 2}}{(2k + 1)!}</math> || first multiply/divide by <math>x^5</math> (to make the exponent <math>7(2k + 1)</math>, then do <math>u = x^7</math> || power || <math>\frac{1}{x^5} \sum_{k=0}^\infty \frac{u^{2k + 1}}{(2k + 1)!}</math> || <math>\frac{\sinh u}{x^5}</math> || <math>\frac{\sinh(x^7)}{x^5}</math> | ||
|} | |} | ||
===Example involving a fractional power substitution=== | |||
Consider the power series summation problem: | |||
<math>\sum_{k=0}^\infty \frac{x^k}{(2k)!}</math> | |||
We want to do a <math>u</math>-substitution that makes the exponent <math>2k</math> so as to match the denominator. In order to do this, we would need to put <math>u = x^{1/2}</math>. This, however, is problematic since we don't know the sign of <math>x</math>. Thus, we make cases: | |||
{| class="sortable" border="1" | |||
! Case on sign of <math>x</math> !! <math>u</math>-substitution !! Power series in terms of <math>u</math> !! Sum in terms of <math>u</math> !! Sum in terms of <math>x</math> | |||
|- | |||
| positive || <math>u = \sqrt{x}</math>, so <math>x = u^2</math> || <math>\sum_{k=0}^\infty \frac{u^{2k}}{(2k)!}</math> || <math>\cosh u</math> || <math>\cosh \sqrt{x}</math> | |||
|- | |||
| negative || <math>u = \sqrt{-x}</math>, so <math>x = -u^2</math> || <math>\sum_{k=0}^\infty \frac{(-1)^ku^{2k}}{(2k)!}</math> || <math>\cos u</math> || <math>\cos \sqrt{-x}</math> | |||
|} | |||
At <math>x = 0</math>, either description fits. Overall, we have a [[piecewise definition of function]] for the sum of the series: | |||
<math>\left\lbrace \begin{array}{rl} \cosh \sqrt{x}, & x \ge 0 \\ \cos \sqrt{-x}, & x < 0 \\\end{array}</math> |
Revision as of 22:59, 1 July 2012
Description of the method
The substitution method for power series summation is a method that can be used to convert one power series summation problem into another one. It is typically done with the goal of making the summation easier to obtain an explicit closed-form expression for.
Scalar multiple substitution
This is a substitution of the form for a constant. Explicitly, consider a power series of the form:
(Note that the starting point could be 0, 1, or anything).
Then, with the substitution , this becomes:
We can use scalar multiple substitutions in order to get rid of purely exponential parts of the coefficients.
Power substitution
This is a substitution of the form for a constant. Explicitly, consider a power series of the form:
(Note that the starting point could be 0, 1, or anything).
Then, with the subtsitution , this becomes:
Scalar multiple of power substitution
This combines the previous two substitution ideas, with a substitution of the form for constants. Explicitly, consider a power series of the form:
(Note that the starting point could be 0, 1, or anything).
Then, with the subtsitution , this becomes:
Application
Goal of the substitution
The substitution method is typically used for two purposes:
- Get rid of unnecessary multiplicative exponential terms in the coefficients (the scalar multiple part takes care of this)
- Try to scale the exponent so that it better matches the coefficients (the power part takes care of this): The general rule is that, at the end of the substitution, the exponent should match, as closely as possible, any term that is in a denominator or whose factorial is in the denominator.
Combination with multiplication
Substitution can be combined with another common technique for power series manipulation: multiply and divide by in order to make the exponent better match the coefficient.
Examples
Simple examples
Power series in | -substitution | Scalar multiple or power or both? | New power series in | Sum in term of | Sum in terms of (need to substitute back) |
---|---|---|---|---|---|
power | |||||
power | |||||
scalar multiple | |||||
combined | |||||
(we want the exponent on it to match the expression under the factorial) | power |
Examples that involve some combination of substitution and multiplying/dividing
Power series in | manipulation + -substitution | Scalar multiple or power or both? | New power series in | Sum in term of | Sum in terms of (need to substitute back) |
---|---|---|---|---|---|
first pull out a factor of , then do | power | ||||
first multiply/divide by (to make the exponent , then do | power |
Example involving a fractional power substitution
Consider the power series summation problem:
We want to do a -substitution that makes the exponent so as to match the denominator. In order to do this, we would need to put . This, however, is problematic since we don't know the sign of . Thus, we make cases:
Case on sign of | -substitution | Power series in terms of | Sum in terms of | Sum in terms of |
---|---|---|---|---|
positive | , so | |||
negative | , so |
At , either description fits. Overall, we have a piecewise definition of function for the sum of the series:
Failed to parse (syntax error): {\displaystyle \left\lbrace \begin{array}{rl} \cosh \sqrt{x}, & x \ge 0 \\ \cos \sqrt{-x}, & x < 0 \\\end{array}}