Weight gain: Difference between revisions
en>Mean as custard m Reverted edits by Gainyourweight (talk) to last version by ClueBot NG |
en>Deli nk m Reverted edits by 111.93.161.21 (talk) to last version by ClueBot NG |
||
Line 1: | Line 1: | ||
In [[mathematics]], the '''power series method''' is used to seek a [[power series]] solution to certain [[differential equation]]s. In general, such a solution assumes a [[power series]] with unknown coefficients, then substitutes that solution into the differential equation to find a [[recurrence relation]] for the coefficients. | |||
== Method == | |||
Consider the second-order linear differential equation | |||
: <math>a_2(z)f''(z)+a_1(z)f'(z)+a_0(z)f(z)=0.\;\!</math> | |||
Suppose ''a''<sub>2</sub> is nonzero for all ''z''. Then we can divide throughout to obtain | |||
: <math>f''+{a_1(z)\over a_2(z)}f'+{a_0(z)\over a_2(z)}f=0.</math> | |||
Suppose further that ''a''<sub>1</sub>/''a''<sub>2</sub> and ''a''<sub>0</sub>/''a''<sub>2</sub> are [[analytic function]]s. | |||
== | The power series method calls for the construction of a power series solution | ||
:<math>f=\sum_{k=0}^\infty A_kz^k.</math> | |||
If ''a''<sub>2</sub> is zero for some ''z'', then the [[Frobenius method]], a variation on this method, is suited to deal with so called ''singular points''. The method works analogously for higher order equations as well as for systems. | |||
== | == Example usage == | ||
Let us look at the [[Hermite differential equation]], | |||
: <math>f''-2zf'+\lambda f=0;\;\lambda=1</math> | |||
We can try to construct a series solution | |||
: <math>f=\sum_{k=0}^\infty A_kz^k</math> | |||
: <math>f'=\sum_{k=0}^\infty kA_kz^{k-1}</math> | |||
: <math>f''=\sum_{k=0}^\infty k(k-1)A_kz^{k-2}</math> | |||
Substituting these in the differential equation | |||
: <math> | |||
\begin{align} | |||
& {} \quad \sum_{k=0}^\infty k(k-1)A_kz^{k-2}-2z\sum_{k=0}^\infty kA_kz^{k-1}+\sum_{k=0}^\infty A_kz^k=0 \\ | |||
& =\sum_{k=0}^\infty k(k-1)A_kz^{k-2}-\sum_{k=0}^\infty 2kA_kz^k+\sum_{k=0}^\infty A_kz^k | |||
\end{align} | |||
</math> | |||
Making a shift on the first sum | |||
: <math> | |||
\begin{align} | |||
& = \sum_{k+2=0}^\infty (k+2)((k+2)-1)A_{k+2}z^{(k+2)-2}-\sum_{k=0}^\infty 2kA_kz^k+\sum_{k=0}^\infty A_kz^k \\ | |||
& =\sum_{k=-2}^\infty (k+2)(k+1)A_{k+2}z^k-\sum_{k=0}^\infty 2kA_kz^k+\sum_{k=0}^\infty A_kz^k \\ | |||
& =(0)(-1)A_0 z^{-2} + (1)(0)A_{1}z^{-1}+\sum_{k=0}^\infty (k+2)(k+1)A_{k+2}z^k-\sum_{k=0}^\infty 2kA_kz^k+\sum_{k=0}^\infty A_kz^k \\ | |||
& =\sum_{k=0}^\infty (k+2)(k+1)A_{k+2}z^k-\sum_{k=0}^\infty 2kA_kz^k+\sum_{k=0}^\infty A_kz^k \\ | |||
& =\sum_{k=0}^\infty \left((k+2)(k+1)A_{k+2}+(-2k+1)A_k\right)z^k | |||
\end{align} | |||
</math> | |||
If this series is a solution, then all these coefficients must be zero, so: | |||
: <math>(k+2)(k+1)A_{k+2}+(-2k+1)A_k=0\;\!</math> | |||
We can rearrange this to get a [[recurrence relation]] for ''A''<sub>''k''+2</sub>. | |||
: <math>(k+2)(k+1)A_{k+2}=-(-2k+1)A_k\;\!</math> | |||
: <math>A_{k+2}={(2k-1)\over (k+2)(k+1)}A_k\;\!</math> | |||
Now, we have | |||
: <math>A_2 = {-1 \over (2)(1)}A_0={-1\over 2}A_0,\, A_3 = {1 \over (3)(2)} A_1={1\over 6}A_1</math> | |||
We can determine ''A''<sub>0</sub> and ''A''<sub>1</sub> if there are initial conditions, i.e. if we have an initial value problem. | |||
So we have | |||
: <math> | |||
\begin{align} | |||
A_4 & ={1\over 4}A_2 = \left({1\over 4}\right)\left({-1 \over 2}\right)A_0 = {-1 \over 8}A_0 \\[8pt] | |||
A_5 & ={1\over 4}A_3 = \left({1\over 4}\right)\left({1 \over 6}\right)A_1 = {1 \over 24}A_1 \\[8pt] | |||
A_6 & = {7\over 30}A_4 = \left({7\over 30}\right)\left({-1 \over 8}\right)A_0 = {-7 \over 240}A_0 \\[8pt] | |||
A_7 & = {3\over 14}A_5 = \left({3\over 14}\right)\left({1 \over 24}\right)A_1 = {1 \over 112}A_1 | |||
\end{align} | |||
</math> | |||
and the series solution is | |||
: <math> | |||
\begin{align} | |||
f & = A_0x^0+A_1x^1+A_2x^2+A_3x^3+A_4x^4+A_5x^5+A_6x^6+A_7x^7+\cdots \\[8pt] | |||
& = A_0x^0 + A_1x^1 + {-1\over 2}A_0x^2 + {1\over 6}A_1x^3 + {-1 \over 8}A_0x^4 + {1 \over 24}A_1x^5 + {-7 \over 240}A_0x^6 + {1 \over 112}A_1x^7 + \cdots \\[8pt] | |||
& = A_0x^0 + {-1\over 2}A_0x^2 + {-1 \over 8}A_0x^4 + {-7 \over 240}A_0x^6 + A_1x + {1\over 6}A_1x^3 + {1 \over 24}A_1x^5 + {1 \over 112}A_1x^7 + \cdots | |||
\end{align} | |||
</math> | |||
which we can break up into the sum of two linearly independent series solutions: | |||
: <math>f=A_0 \left(1+{-1\over 2}x^2+{-1 \over 8}x^4+{-7 \over 240}x^6+\cdots\right) + A_1\left(x+{1\over 6}x^3+{1 \over 24}x^5+{1 \over 112}x^7+\cdots\right)</math> | |||
which can be further simplified by the use of [[hypergeometric series]]. | |||
==Nonlinear equations== | |||
The power series method can be applied to certain [[nonlinear]] differential equations, though with less flexibility. Most nonlinear equations can be solved by using the [[Parker-Sochacki method|Parker-Sochacki]] method, which is a slight variation of the auxiliary variable method. Since the Parker-Sochacki method involves a reformation of the original system of ordinary differential equations, it is not simply referred to as the power series method. Nonetheless, the Parker-Sochacki method (a method that comes before doing the power series method) allows one to easily apply the power series method to most systems of ordinary differential equations. The Parker-Sochacki method allows one to apply the power series method to a larger system, and the exact same coefficients will be produced at the cost of also calculating the coefficients of auxiliary equations. | |||
The power series method will give solutions only to [[initial value problem]]s (opposed to [[boundary value problem]]s), this is not an issue when dealing with linear equations since the solution may turn up multiple linearly independent solutions which may be combined (by [[Superposition principle|superposition]]) to solve boundary value problems as well. A further restriction is that the series coefficients will be specified by a nonlinear recurrence (the nonlinearities are inherited from the differential equation). | |||
In order for the solution method to work, as in linear equations, it is necessary to express every term in the nonlinear equation as a power series so that all of the terms may be combined into one power series. | |||
As an example, consider the initial value problem | |||
:<math>F F'' + 2 F'^2 + \eta F' = 0 \quad ; \quad F(1) = 0 \ , \ F'(1) = -\frac{1}{2}</math> | |||
which describes a solution to capillary-driven flow in a groove. Note the two nonlinearities: the first and second terms involve products. Note also that the initial values are given at <math>\eta = 1</math>, which hints that the power series must be set up as: | |||
:<math>F(\eta) = \sum_{i = 0}^{\infty} c_i (\eta - 1)^i</math> | |||
since in this way | |||
:<math>\frac{d^n F}{d \eta^n} \Bigg|_{\eta = 1} = n! \ c_n</math> | |||
which makes the initial values very easy to evaluate. It is necessary to rewrite the equation slightly in light of the definition of the power series, | |||
:<math>F F'' + 2 F'^2 + (\eta - 1) F' + F' = 0 \quad ; \quad F(1) = 0 \ , \ F'(1) = -\frac{1}{2}</math> | |||
so that the third term contains the same form <math>\eta - 1</math> that shows in the power series. | |||
The last consideration is what to do with the products; substituting the power series in would result in products of power series when it's necessary that each term be its own power series. This is where the [[Cauchy product|identity]] | |||
:<math>\left(\sum_{i = 0}^{\infty} a_i x^i\right) \left(\sum_{i = 0}^{\infty} b_i x^i\right) = | |||
\sum_{i = 0}^{\infty} x^i \sum_{j = 0}^i a_{i - j} b_j</math> | |||
is useful; substituting the power series into the differential equation and applying this identity leads to an equation where every term is a power series. After much rearrangement, the recurrence | |||
:<math> | |||
\sum_{j = 0}^i \left((j + 1) (j + 2) c_{i - j} c_{j + 2} + 2 (i - j + 1) (j + 1) c_{i - j + 1} c_{j + 1}\right) + i c_i + (i + 1) c_{i + 1} = 0 | |||
</math> | |||
is obtained, specifying exact values of the series coefficients. From the initial values, <math>c_0 = 0</math> and <math>c_1 = -1/2</math>, thereafter the above recurrence is used. For example, the next few coefficients: | |||
:<math> | |||
c_2 = -\frac{1}{6} \quad ; \quad c_3 = -\frac{1}{108} \quad ; \quad c_4 = \frac{7}{3240} \quad ; \quad c_5 = -\frac{19}{48600} \ \dots | |||
</math> | |||
A limitation of the power series solution shows itself in this example. A numeric solution of the problem shows that the function is smooth and always decreasing to the left of <math>\eta = 1</math>, and zero to the right. At <math>\eta = 1</math>, a slope discontinuity exists, a feature which the power series is incapable of rendering, for this reason the series solution continues decreasing to the right of <math>\eta = 1</math> instead of suddenly becoming zero. | |||
== External links == | |||
* {{mathworld|urlname=FrobeniusMethod|title=Frobenius Method}} | |||
* [http://math.fullerton.edu/mathews/n2003/FrobeniusSeriesMod.html Module for Frobenius Series Solution] | |||
== References == | |||
* {{cite book | last1=Coddington | first1=Earl A. | last2=Levinson | first2=Norman | title=Theory of Ordinary Differential Equations | publisher=[[McGraw-Hill]] | location=New York | year=1955}} | |||
* {{cite book | |||
| surname = Hille | |||
| given = Einar | |||
|authorlink=Einar Hille | |||
| title = Ordinary Differential Equations in the Complex Plane | |||
| publisher=[[Dover Publications]] | |||
| place = [[Mineola, New York|Mineola]] | |||
| year = 1976}} | |||
* {{cite book| last = Teschl| given = Gerald|authorlink=Gerald Teschl| title = Ordinary Differential Equations and Dynamical Systems| publisher=[[American Mathematical Society]]| place = [[Providence, Rhode Island|Providence]]| year = 2012| isbn= 978-0-8218-8328-0| url = http://www.mat.univie.ac.at/~gerald/ftp/book-ode/}} | |||
[[Category:Ordinary differential equations]] |
Revision as of 17:26, 29 December 2013
In mathematics, the power series method is used to seek a power series solution to certain differential equations. In general, such a solution assumes a power series with unknown coefficients, then substitutes that solution into the differential equation to find a recurrence relation for the coefficients.
Method
Consider the second-order linear differential equation
Suppose a2 is nonzero for all z. Then we can divide throughout to obtain
Suppose further that a1/a2 and a0/a2 are analytic functions.
The power series method calls for the construction of a power series solution
If a2 is zero for some z, then the Frobenius method, a variation on this method, is suited to deal with so called singular points. The method works analogously for higher order equations as well as for systems.
Example usage
Let us look at the Hermite differential equation,
We can try to construct a series solution
Substituting these in the differential equation
Making a shift on the first sum
If this series is a solution, then all these coefficients must be zero, so:
We can rearrange this to get a recurrence relation for Ak+2.
Now, we have
We can determine A0 and A1 if there are initial conditions, i.e. if we have an initial value problem.
So we have
and the series solution is
which we can break up into the sum of two linearly independent series solutions:
which can be further simplified by the use of hypergeometric series.
Nonlinear equations
The power series method can be applied to certain nonlinear differential equations, though with less flexibility. Most nonlinear equations can be solved by using the Parker-Sochacki method, which is a slight variation of the auxiliary variable method. Since the Parker-Sochacki method involves a reformation of the original system of ordinary differential equations, it is not simply referred to as the power series method. Nonetheless, the Parker-Sochacki method (a method that comes before doing the power series method) allows one to easily apply the power series method to most systems of ordinary differential equations. The Parker-Sochacki method allows one to apply the power series method to a larger system, and the exact same coefficients will be produced at the cost of also calculating the coefficients of auxiliary equations.
The power series method will give solutions only to initial value problems (opposed to boundary value problems), this is not an issue when dealing with linear equations since the solution may turn up multiple linearly independent solutions which may be combined (by superposition) to solve boundary value problems as well. A further restriction is that the series coefficients will be specified by a nonlinear recurrence (the nonlinearities are inherited from the differential equation).
In order for the solution method to work, as in linear equations, it is necessary to express every term in the nonlinear equation as a power series so that all of the terms may be combined into one power series.
As an example, consider the initial value problem
which describes a solution to capillary-driven flow in a groove. Note the two nonlinearities: the first and second terms involve products. Note also that the initial values are given at , which hints that the power series must be set up as:
since in this way
which makes the initial values very easy to evaluate. It is necessary to rewrite the equation slightly in light of the definition of the power series,
so that the third term contains the same form that shows in the power series.
The last consideration is what to do with the products; substituting the power series in would result in products of power series when it's necessary that each term be its own power series. This is where the identity
is useful; substituting the power series into the differential equation and applying this identity leads to an equation where every term is a power series. After much rearrangement, the recurrence
is obtained, specifying exact values of the series coefficients. From the initial values, and , thereafter the above recurrence is used. For example, the next few coefficients:
A limitation of the power series solution shows itself in this example. A numeric solution of the problem shows that the function is smooth and always decreasing to the left of , and zero to the right. At , a slope discontinuity exists, a feature which the power series is incapable of rendering, for this reason the series solution continues decreasing to the right of instead of suddenly becoming zero.
External links
- 22 year-old Systems Analyst Rave from Merrickville-Wolford, has lots of hobbies and interests including quick cars, property developers in singapore and baking. Always loves visiting spots like Historic Monuments Zone of Querétaro.
Here is my web site - cottagehillchurch.com - Module for Frobenius Series Solution
References
- 20 year-old Real Estate Agent Rusty from Saint-Paul, has hobbies and interests which includes monopoly, property developers in singapore and poker. Will soon undertake a contiki trip that may include going to the Lower Valley of the Omo.
My blog: http://www.primaboinca.com/view_profile.php?userid=5889534 - 20 year-old Real Estate Agent Rusty from Saint-Paul, has hobbies and interests which includes monopoly, property developers in singapore and poker. Will soon undertake a contiki trip that may include going to the Lower Valley of the Omo.
My blog: http://www.primaboinca.com/view_profile.php?userid=5889534 - 20 year-old Real Estate Agent Rusty from Saint-Paul, has hobbies and interests which includes monopoly, property developers in singapore and poker. Will soon undertake a contiki trip that may include going to the Lower Valley of the Omo.
My blog: http://www.primaboinca.com/view_profile.php?userid=5889534