27-07 — Series Solutions and Frobenius Method

Phase: 27 — Ordinary Differential Equations | Subject: 27-07 Prerequisites: 27-03 (Second-Order Linear ODEs), 03-07 (Sequences and Series) Next subject: 27-08 — Numerical Methods for ODEs


Learning Objectives

By the end of this subject, you will be able to:

  1. Understand when series solutions are needed (variable-coefficient ODEs)
  2. Apply the power series method to solve ODEs around ordinary points
  3. Use the Frobenius method for regular singular points
  4. Derive and work with Bessel functions as classic series solutions
  5. Determine the radius of convergence for series solutions

Core Content

1. Why Series Solutions?

When an ODE has variable coefficients (coefficients that are functions of x), standard methods (characteristic equation, integrating factor) often fail. Series solutions express the solution as a power series:

$$y = \sum_{n=0}^{\infty} a_n x^n$$

This turns the ODE into a recurrence relation for the coefficients $a_n$.

2. Power Series Method (Ordinary Points)

An ordinary point $x_0$ is where $P(x) \neq 0$ for a standard-form ODE $P(x)y'' + Q(x)y' + R(x)y = 0$.

Method: 1. Assume $y = \sum_{n=0}^{\infty} a_n (x-x_0)^n$ 2. Compute $y'$ and $y''$ term-by-term 3. Substitute into the ODE 4. Collect like powers of $(x-x_0)$ 5. Set the coefficient of each power to 0 (gives recurrence) 6. Solve for $a_n$ recursively

3. Frobenius Method (Regular Singular Points)

A regular singular point occurs where $P(x_0) = 0$ but $(x-x_0)Q(x)/P(x)$ and $(x-x_0)^2 R(x)/P(x)$ remain finite.

Frobenius form: $$y = \sum_{n=0}^{\infty} a_n x^{n+r}$$

where $r$ is the indicial exponent found from the indicial equation.

4. Bessel's Equation

The canonical example: $x^2 y'' + x y' + (x^2 - \nu^2)y = 0$

Solutions are Bessel functions $J_\nu(x)$ and $Y_\nu(x)$ (Bessel functions of the first and second kind).

5. Radius of Convergence

A power series solution converges within a radius $R$ determined by the nearest singularity of the ODE's coefficients. Within this radius, the series solution equals the true solution.


Worked Examples

Example 1: Power Series for a Simple ODE

Problem: Solve $y'' + y = 0$ using a power series around $x_0 = 0$.

Solution:

Assume $y = \sum_{n=0}^{\infty} a_n x^n$.

Then $y' = \sum_{n=1}^{\infty} n a_n x^{n-1}$ and $y'' = \sum_{n=2}^{\infty} n(n-1) a_n x^{n-2}$.

Substituting: $\sum_{n=2}^{\infty} n(n-1) a_n x^{n-2} + \sum_{n=0}^{\infty} a_n x^n = 0$

Shift indices to match powers: $\sum_{n=0}^{\infty} [(n+2)(n+1) a_{n+2} + a_n] x^n = 0$

Recurrence: $(n+2)(n+1) a_{n+2} + a_n = 0$, so $a_{n+2} = -a_n / [(n+2)(n+1)]$

Even terms: $a_{2n} = (-1)^n a_0 / (2n)!$

Similarly for odd: $a_{2n+1} = (-1)^n a_1 / (2n+1)!$

Answer: $y = a_0 \cos(x) + a_1 \sin(x)$ — recovers the known solution via series.


Example 2: Frobenius Method

Problem: Find the indicial equation for Bessel's equation: $x^2 y'' + x y' + (x^2 - \nu^2)y = 0$.

Solution:

Assume $y = \sum_{n=0}^{\infty} a_n x^{n+r}$.

Compute derivatives and substitute. The lowest power is $x^r$:

Coefficient of $x^r$: $[r(r-1) + r - \nu^2] a_0 = [r^2 - \nu^2] a_0 = 0$

Indicial equation: $r^2 - \nu^2 = 0$, so $r = \pm \nu$.

Answer: The indicial exponents are $r = \nu$ and $r = -\nu$.


Example 3: Radius of Convergence

Problem: For the ODE $y'' + (1+x)y = 0$, determine the radius of convergence of the series solution about $x_0 = 0$.

Solution:

Standard form: $P(x) = 1$, $Q(x) = 1+x$, $R(x) = 1+x$.

All coefficients are polynomials — analytic everywhere. The nearest singularity is at infinity.

Answer: Radius of convergence $R = \infty$ (series converges for all $x$).


Practice Problems

Problem 1: Use power series to solve $y'' - 2xy' + y = 0$ (Hermite's equation). Find the first 4 non-zero terms.

Problem 2: For the ODE $(1-x^2)y'' - 2xy' + 2y = 0$ (Legendre's equation), find the indicial equation and the first two terms of each solution.

Problem 3: Show that the series solution for $y' = xy$ with $y(0) = 1$ gives $y = e^{x^2/2}$.

Problem 4: For Bessel's equation with $\nu = 0$, write out the first 4 terms of $J_0(x)$.

Problem 5: Explain why the Frobenius method is needed for $xy'' + y = 0$ but not for $y'' + y = 0$.


Summary

  1. Series solutions express ODE solutions as power series when standard methods fail
  2. Power series method works at ordinary points by substituting a Taylor series into the ODE
  3. Frobenius method extends this to regular singular points using $y = \sum a_n x^{n+r}$
  4. Bessel functions arise from series solutions of Bessel's equation and appear throughout physics
  5. Radius of convergence is determined by the nearest singularity of the ODE coefficients

Pitfalls


Key Terms


Quiz

Q1: When is a power series solution method needed for an ODE?

A) Only for first-order ODEs B) When the ODE has variable coefficients that prevent standard methods C) Only for nonlinear ODEs D) When the initial conditions are missing

Correct: B)


Q2: In the Frobenius method, the form of the assumed solution is:

A) $y = \sum a_n x^n$ B) $y = \sum a_n x^{n+r}$ where $r$ is the indicial exponent C) $y = \sum a_n (x-x_0)^n$ for any $x_0$ D) $y = \sum a_n \sin(nx)$

Correct: B)


Q3: The indicial equation determines:

A) The convergence radius of the series B) The possible values of the exponent $r$ in the Frobenius solution C) The initial conditions for the ODE D) Whether the ODE is linear or nonlinear

Correct: B)


Q4: Bessel functions $J_\nu(x)$ arise as solutions to:

A) $y'' + \lambda y = 0$ B) $x^2 y'' + x y' + (x^2 - \nu^2)y = 0$ C) $y'' + p(x)y' + q(x)y = 0$ for any $p, q$ D) $y' = ky$

Correct: B)


Q5: The radius of convergence for a series solution about an ordinary point is:

A) Always 1 B) Always 0 C) The distance to the nearest singularity of the ODE coefficients D) Infinite for all ODEs

Correct: C)


Q6: In the series solution method, substituting the power series into the ODE and equating coefficients of each power of $x$ to zero yields:

A) The general solution directly B) A recurrence relation for the coefficients $a_n$ C) The initial conditions D) The characteristic equation

Correct: B)


Q7: For the ODE $y'' + xy' + y = 0$ about $x_0 = 0$, the recurrence relation for the coefficients is:

A) $a_{n+2} = -a_n / [(n+2)(n+1)]$ B) $a_{n+2} = -(a_n + n a_{n-1}) / [(n+2)(n+1)]$ C) $a_{n+2} = a_n / (n+2)$ D) No recurrence exists — this ODE cannot be solved by series

Correct: B)


Q8: Frobenius method is specifically designed for ODEs with:

A) Constant coefficients B) Nonlinear terms C) Regular singular points D) Periodic coefficients

Correct: C)


Next Steps

Continue to 27-08 — Numerical Methods for ODEs to learn how computers solve ODEs when analytical solutions are impossible — including Euler's method, Runge-Kutta, and stability analysis.