No history yet

Series Solutions

Solving with Infinite Series

Many important differential equations, especially in physics and engineering, don't have solutions you can write down with simple functions like polynomials or exponentials. For these, we often turn to a powerful technique: finding the solution as an infinite series. This approach allows us to solve complex equations like the Legendre and Bessel equations by representing their solutions as a power series.

This method works particularly well when we're looking for a solution around a specific point, x0x_0. If the coefficients of the differential equation are well-behaved (analytic) at that point, we can use a standard power series. But things get more interesting when we have a regular singular point, a type of mild singularity where standard power series methods fail. This is where a more general technique comes into play.

The Frobenius Method

The Frobenius method is a way to find a series solution for a second-order linear ODE around a regular singular point, say x=0x=0. Instead of assuming the solution is a simple power series, we assume a slightly more general form.

y(x)=xrn=0anxn=n=0anxn+ry(x) = x^r \sum_{n=0}^{\infty} a_n x^n = \sum_{n=0}^{\infty} a_n x^{n+r}

The process involves substituting this series form into the differential equation. After taking derivatives and aligning the powers of xx, we can solve for the unknown exponent rr and the coefficients ana_n. The very first step, which involves the lowest power of xx, is the most crucial.

Setting the coefficient of the lowest power of xx to zero gives us a quadratic equation for rr. This special equation holds the key to the entire solution.

indicial equation

noun

A quadratic equation for the exponent rr in the Frobenius method, derived from the coefficient of the lowest power of xx after substituting the series into the differential equation. Its roots, r1r_1 and r2r_2, determine the form of the series solutions.

Legendre's Equation

Legendre's equation is a classic example that appears when solving problems with spherical symmetry. It's written as:

(1x2)y2xy+p(p+1)y=0(1-x^2)y'' - 2xy' + p(p+1)y = 0

By substituting the series y=anxny = \sum a_n x^n into the equation and solving for the coefficients, we find a recurrence relation. This relation links each coefficient to the one two steps before it (an+2a_{n+2} in terms of ana_n).

an+2=(np)(n+p+1)(n+1)(n+2)ana_{n+2} = \frac{(n-p)(n+p+1)}{(n+1)(n+2)} a_n

A fascinating thing happens if the constant pp is a non-negative integer. Look at the numerator of the recurrence relation, (np)(n-p). When nn becomes equal to pp, the numerator becomes zero. This means ap+2a_{p+2} will be zero, and so will all subsequent coefficients in that series (ap+4,ap+6,a_{p+4}, a_{p+6}, \dots). One of the series solutions terminates and becomes a polynomial. These are the famous Legendre polynomials.

Bessel's Equation

Bessel's equation is another cornerstone of mathematical physics, often appearing in problems involving cylindrical symmetry, like the vibrations of a circular drumhead or heat flow in a cylinder.

x2y+xy+(x2p2)y=0x^2 y'' + xy' + (x^2 - p^2)y = 0

After substituting the Frobenius series y=anxn+ry = \sum a_n x^{n+r} into Bessel's equation, we find the indicial equation by looking at the coefficient of the lowest power of xx.

r2p2=0r^2 - p^2 = 0

The nature of the solutions depends on the value of pp. When we work through the recurrence relation, we get solutions called Bessel functions. The first solution, corresponding to the root r=pr=p, is called a Bessel function of the first kind, denoted Jp(x)J_p(x).

For the series to be a valid solution, it must converge. Using tests like the ratio test, we find that the series solutions for both the Legendre and Bessel equations converge for all finite values of xx. For Legendre's equation, the interval of convergence is typically x<1|x|<1, related to the singular points at x=±1x=\pm 1.

Quiz Questions 1/5

Why are series solutions, like power series or the Frobenius method, often used to solve certain differential equations in physics and engineering?

Quiz Questions 2/5

The Frobenius method is particularly useful for finding series solutions around a regular singular point. What is the general form of the solution assumed in this method, centered at x=0x=0?

The Frobenius method provides a systematic way to tackle differential equations with regular singular points, unlocking series solutions for fundamental equations like Bessel's and extending the power of series methods beyond ordinary points.