Power series solution method for differential equations: Difference between revisions

From Calculus
 
Line 28: Line 28:


<math>a_0 \left(1 + \frac{x^3}{3!} + \frac{x^6}{6!} + \dots \right) + a_1 \left(x + \frac{x^4}{4!} + \frac{x^7}{7!} + \dots \right) + a_2 \left(\frac{x^2}{2!} + \frac{x^5}{5!} + \frac{x^8}{8!} + \dots \right), \qquad a_0, a_1, a_2 \in \R</math>
<math>a_0 \left(1 + \frac{x^3}{3!} + \frac{x^6}{6!} + \dots \right) + a_1 \left(x + \frac{x^4}{4!} + \frac{x^7}{7!} + \dots \right) + a_2 \left(\frac{x^2}{2!} + \frac{x^5}{5!} + \frac{x^8}{8!} + \dots \right), \qquad a_0, a_1, a_2 \in \R</math>
Comparison with the other method for solving this differential equation: {{fillin}}

Latest revision as of 21:16, 9 July 2012

Description of the method

This method aims to find power series for the solution functions to a differential equation. The general idea is as follows:

  1. Assume that the solution function has a power series that converges to it. It is typically helpful to write the power series as an exponential generating function, i.e., in the form k=0akxkk!.
  2. Compute the power series for the derivatives of the function, and then plug in the differential equation to obtain a recurrence relation between the aks.
  3. Solve this recurrence relation. In general, we expect that all the coefficients are determined by the first few, where the number of initial coefficients that we are free to specify equals the order of the differential equation. For an initial value problem, these first few coefficients can be determined.

Examples

Consider the differential equation where the independent variable is x and the dependent variable is y:

y=y

Suppose y has a power series:

y=k=0akxkk!

It is easy to see that:

y=k=0ak+3xkk!

The equation y=y means that these power series are equal coefficient-wise, so we get:

ak=ak+3k{0,1,2,}

We thus see that a0,a1,a2 can be varied freely, and once these are determined, all the coefficients are determined. Explicitly, we have a0=a3=a6=, separately a1=a4=a7=, and separately a2=a5=a8=. Thus, the power series can be written as:

a0(1+x33!+x66!+)+a1(x+x44!+x77!+)+a2(x22!+x55!+x88!+),a0,a1,a2R

Comparison with the other method for solving this differential equation: Fill this in later