MSC Mod 3 & 4
MSC Mod 3 & 4
Learning Objectives
By the end of this chapter, learners will be able to:
● Understand the concept of power series and its role in solving differential equations.
● Define radius of convergence and apply the ratio test.
● Apply power series methods to solve second-order differential equations.
● Construct and solve recurrence relations arising from substitution.
● Interpret general solutions in series form.
Second-order linear differential equations of the following type, where P(x) and Q(x) are analytic
functions close to a point x = x₀ , can be solved using this method especially well:
d²y/dx² + P(x) dy/dx + Q(x) y = 0
Within this radius, we can use the power series as a valid solution to the differential equation.
5. Equating coefficients of like powers of x to zero yields a recurrence relation among the
coefficients aₙ.
6. Solve the recurrence to obtain the coefficients (a₀ , a₁ , ...), and thus the power series
solution.
Second term:
Σ (from n = 0 to ∞) [aₙ xⁿ⁺ ¹]
= Σ (from k = 1 to ∞) [aₖ ₋₁ xᵏ]
(Shift index: let k = n + 1 ⇒ n = k − 1)
Then for k ≥ 1:
[(k + 2)(k + 1) * aₖ₊₂ − aₖ₋₁] xᵏ
Since this series equals zero for all x, each coefficient must be zero:
For k = 0:
2 * a₂ = 0 ⟹a₂ = 0
For k ≥ 1:
(k + 2)(k + 1) * aₙ₊ ₂ − aₙ₋ ₁ = 0
⟹aₖ ₊₂ = aₖ ₋₁ / [(k + 2)(k + 1)]
Already found:
a₂ = 0
Thus:
y(x) = a₀ [1 + (1/6) x³ + (1/180) x⁶ + ...] + a₁ [x + (1/12) x⁴ + (1/504) x⁷ + ...]
Q5. Which of the following is not a valid solution method for second-order linear differential
equations?
A) Variation of parameters
B) Power series method
C) Frobenius method
D) Euler’s Forward method
Q6. The power series solution to a differential equation assumes the solution:
A) Cannot be expressed in any closed form
B) Is a finite polynomial
C) Can be represented as an infinite series of powers of x
D) Is a constant function
Q8. Which condition must be satisfied to use the power series method at a point x = a?
A) The point must be a singular point
B) The function must be discontinuous at x = a
C) The differential equation must be linear and analytic at x = a
D) The point must be a turning point
Answer Key
1. B
2. C
3. C
4. C
5. D
6. C
7. C
8. C
9. C
10. C
Problem:
Solve the differential equation
d²y/dx² − y = 0
using the power series method about x = 0.
Solution:
y(x) = ∑ₙ₌ ₀ ^∞ aₙ · xⁿ
=> y(x) = a₀ + a₁ x + a₂ x² + a₃ x³ + ...
Differentiate term-by-term:
d²y/dx² − y = 0
=> ∑ₙ₌ ₂ ^∞ n(n − 1)aₙ · xⁿ⁻ ² − ∑ₙ₌ ₀ ^∞ aₙ · xⁿ = 0
Change index of the first sum so that both sums are powers of xⁿ:
Let m = n − 2
Then n = m + 2
So:
(m + 2)(m + 1)aₙ₊ ₂ − aₙ = 0
=> aₙ₊ ₂ = aₙ⁄[(m + 2)(m + 1)]
a₂ = a₀ ⁄2
a₃ = a₁ ⁄6
a₄ = a₂ ⁄(4·3) = (a₀ ⁄2)⁄12 = a₀ ⁄24
a₅ = a₃ ⁄(5·4) = (a₁ ⁄6)⁄20 = a₁ ⁄120
y(x) = a₀ + a₁ x + (a₀ ⁄2)x² + (a₁ ⁄6)x³ + (a₀ ⁄24)x⁴ + (a₁ ⁄120)x⁵ + ...
Which is:
Illustration 2
Problem:
Find the power series solution for the differential equation
(1 − x²) · d²y/dx² − x · dy/dx + y = 0
about x = 0 up to 4 non-zero terms.
Solution:
We obtain:
∑ₙ₌ ₀ ^∞ [ (n + 2)(n + 1)aₙ₊ ₂ − n(n − 1)aₙ + n · aₙ − aₙ ] · xⁿ = 0
y(x) = a₀ + a₂ x² + a₄ x⁴ + ...
=> y(x) = 1 − (1⁄2)x² − (1⁄8)x⁴ + ...
Final Answer:
y(x) ≈ 1 − (1⁄2)x² − (1⁄8)x⁴
Illustration 3
Problem:
Solve the differential equation
dy/dx = y,
with the initial condition y(0) = 1
using the power series method.
Solution:
Differentiating term-by-term:
dy/dx = ∑ (n = 1 to ∞) n aₙ xⁿ⁻ ¹
= a₁ + 2a₂ x + 3a₃ x² + ⋯
a₁ + 2a₂ x + 3a₃ x² + ⋯ = a₀ + a₁ x + a₂ x² + ⋯
x⁰: a₁ = a₀
x¹: 2a₂ = a₁
x²: 3a₃ = a₂
x³: 4a₄ = a₃
⋯
Using y(0) = a₀ = 1:
Then,
a₁ = a₀ = 1
a₂ = a₁ / 2 = 1/2
a₃ = a₂ / 3 = 1/6
a₄ = a₃ / 4 = 1/24
⋯
aₙ = 1 / n!
Answer: y(x) = eˣ
Illustration 4
Problem:
Solve the differential equation
y'' - y = 0
with initial conditions y(0) = 1 and y'(0) = 0
using power series.
Solution:
Assume y(x) = ∑ (n = 0 to ∞) aₙ xⁿ
Then,
y''(x) = ∑ (n = 2 to ∞) n(n - 1) aₙ xⁿ⁻ ²
So,
y''(x) - y(x) = ∑ (n = 2 to ∞) n(n - 1) aₙ xⁿ⁻ ² - ∑ (n = 0 to ∞) aₙ xⁿ
Then,
∑ (m = 0 to ∞) (m + 2)(m + 1) a₍ₘ₊₂₎ xᵐ - ∑ (n = 0 to ∞) aₙ xⁿ = 0
(n + 2)(n + 1) a₍ ₙ₊ ₂ ₎ - aₙ = 0
⇒ a₍ ₙ₊ ₂ ₎ = aₙ / [(n + 2)(n + 1)]
a₂ = a₀ / (2×1) = 1/2
a₃ = a₁ / (3×2) = 0
a₄ = a₂ / (4×3) = (1/2) / 12 = 1/24
a₅ =0
a₆ = a₄ / (6×5) = (1/24) / 30 = 1/720
⋯
So,
y(x) = a₀ + a₁ x + a₂ x² + a₃ x³ + a₄ x⁴ + a₅ x⁵ + a₆ x⁶ + ⋯
= 1 + 0 + (1/2)x² + 0 + (1/24)x⁴ + 0 + (1/720)x⁶ + ⋯
= ∑ (n = 0 to ∞) x²ⁿ / (2n)!
Problem:
Solve y'' + y = 0 using a power series centered at x = 0, with y(0) = 0 and y'(0) = 1.
Solution:
Assume y(x) = ∑ (n = 0 to ∞) aₙ xⁿ
Then,
y''(x) = ∑ (n = 2 to ∞) n(n - 1) aₙ xⁿ⁻ ²
So:
y''(x) + y(x) = 0
⇒ ∑ (n = 2 to ∞) n(n - 1) aₙ xⁿ⁻ ² + ∑ (n = 0 to ∞) aₙ xⁿ = 0
⇒ (n + 2)(n + 1) a₍ ₙ₊ ₂ ₎ + aₙ = 0
⇒ a₍ ₙ₊ ₂ ₎ = -aₙ / [(n + 2)(n + 1)]
Initial conditions:
y(0) = a₀ = 0
y'(0) = a₁ = 1
Then:
a₂ = -a₀ / (2×1) = 0
a₃ = -a₁ / (3×2) = -1/6
a₄ = -a₂ / (4×3) = 0
a₅ = -a₃ / (5×4) = 1/120
⋯
So,
y(x) = a₀ + a₁ x + a₂ x² + a₃ x³ + a₄ x⁴ + ⋯
= 0 + x + 0 - (1/6)x³ + 0 + (1/120)x⁵ + ⋯
= ∑ (n = 0 to ∞) [(-1)ⁿ x²ⁿ⁺ ¹ / (2n + 1)!]
(i) y'' + y = 0
(ii) y'' − x y = 0
3. Determine the first four non-zero terms of the power series solution about x = 0 for:
(iii) x² y'' + y = 0
4. Solve the following second-order differential equation using power series around x = 0:
5. Find the general solution in the form of a power series about x = 0 for the equation:
6. Given the differential equation y'' − 2x y' + 4y = 0, find the recurrence relation and the
first four terms of the power series solution about x = 0.
(ix) y'' − x² y = 0
10. Consider the equation y'' + x² y = 0. Find the recurrence relation and compute the first
five non-zero terms of the solution.
Chapter 2: Theory of Power Series Methods
Learning Objectives
After studying this chapter, learners will be able to:
● Understand the theoretical basis of the power series method for solving second-order
differential equations.
● Differentiate between ordinary and singular points.
● Apply the existence and uniqueness theorem for power series solutions.
● Compute the radius of convergence using standard tests.
● Use analytic continuation to extend series solutions beyond their initial interval of
convergence.
● Recognize the limitations of power series methods.
2.1 Overview
One of the most basic methods for solving differential equations is the Power Series Method,
particularly in situations when it is difficult to find solutions in terms of simple functions. For
linear second-order ordinary differential equations (ODEs), this approach is quite effective.
Understanding the structure and convergence behaviour of power series, as well as the
circumstances in which a power series solution exists and is unique, is crucial for applying the
power series approach systematically. By establishing pertinent theorems, the radius of
convergence, and behaviour close to ordinary and singular points, this chapter develops the
theoretical foundation for the approach.
y(x) = ∑ₙ₌ ₀ ^∞ aₙ (x - x₀ )ⁿ
Here:
This series converges within a radius R around x₀, known as the radius of convergence.
If this limit exists and is non-zero, then the series converges absolutely for all |x - x₀| < R.
y(x) = ∑ₙ₌ ₀ ^∞ aₙ (x - x₀ )ⁿ
A point x = x₀ is called an ordinary point of the differential equation if the functions P(x) and
Q(x) are analytic at x = x₀, i.e., can be expanded as a power series around x₀.
If either P(x) or Q(x) is not analytic at x = x₀, then the point is called a singular point.
Definition:
y(x) = ∑ₙ₌ ₀ ^∞ aₙ (x - x₀ )ⁿ
This theorem guarantees that a convergent power series solution around an ordinary point is
always found.
R = |x₁ - x₀ |
This is based on the fact that the power series solution fails to converge at or beyond a singular
point.
Assume that the functions P(x) and Q(x) are analytic at the point x = x₀ .
y(x) = Σ (n = 0 to ∞) aₙ (x - x₀ )ⁿ
Differentiating term-by-term:
This gives a recurrence relation for the coefficients aₙ, which can be used to construct the full
series solution.
y'' - x·y = 0
y(x) = Σ (n = 0 to ∞) aₙ xⁿ
Also,
x·y(x) = x · Σ (n = 0 to ∞) aₙ xⁿ = Σ (n = 0 to ∞) aₙ xⁿ⁺ ¹
To combine these, we reindex the summations to write both series as powers of xᵏ.
First term:
Let k = n - 2,
so n = k + 2
Then:
Σ (k = 0 to ∞) (k + 2)·(k + 1)·aₖ ₊₂ xᵏ
Second term:
Let k = n + 1,
so n = k - 1
Then:
Σ (k = 1 to ∞) -aₖ ₋₁ xᵏ
Σ (k = 0 to ∞) (k + 2)(k + 1)aₖ ₊₂ xᵏ - Σ (k = 1 to ∞) aₖ ₋₁ xᵏ = 0
So we now write:
For the equation to be true for all x, each coefficient of xᵏ must be zero.
So:
● For k = 0:
2a₂ = 0
a₂ = 0
● For k ≥ 1:
This recurrence formula allows generation of all further terms aₙ once the values of a₀ and a₁
are known.
now construct the terms of the series step-by-step using the recurrence relation.
Assume:
a₀ = A (arbitrary constant)
a₁ = B (arbitrary constant)
It is known that:
a₂ = 0
● For k = 1:
a₃ = a₀ / [(3)(2)] = A / 6
● For k = 2:
a₄ = a₁ / [(4)(3)] = B / 12
● For k = 3:
a₅ = a₂ / [(5)(4)] = 0 / 20 = 0
● For k = 4:
a₆ = a₃ / [(6)(5)] = (A / 6) / 30 = A / 180
And so on.
|x - x₀ | < R
|x - x₀ | > R
At |x - x₀| = R, the convergence behavior needs to be tested separately.
Note: The radius of convergence is often determined by the nearest singular point (i.e., where
the differential equation ceases to be analytic).
Analytic continuation is a technique for expanding a power series' domain by creating new
series centred at various locations that coincide with the initial interval of convergence. It is
useful in achieving this.
For instance, if the original series is centered at x₀ and converges in the range |x - x₀| < R, we
can construct another series centered at x₁ such that:
|x₁ - x₀ | < R
This technique is particularly helpful in solving second-order differential equations near singular
points, as traditional series expansions typically break down.
2.13 Summary
● Power series offer a systematic method for solving second-order ODEs.
● Solutions exist and are unique near ordinary points.
● The radius of convergence is limited by the nearest singularity.
● Analytic continuation helps expand the validity of a solution.
A) y′ + P(x)y = Q(x)
B) y′′ + y′ + y = 0
C) P(x)y″ + Q(x)y′ + R(x)y = 0
D) y″ = f(x)
2. A function f(x) can be represented by a power series about a point x₀ if and only if:
A) f(x) is continuous at x₀
B) f(x) is differentiable at x₀
C) f(x) is integrable on an interval containing x₀
D) f(x) is analytic at x₀
3. Which of the following statements is true regarding the radius of convergence of a power
series?
A) x = 0
B) x = 1
C) x = x₀
D) x = aₙ
5. The power series method is best suited when the coefficients of the differential equation are:
A) Constant
B) Polynomial
C) Non-continuous
D) Analytic at the point of expansion
A) A singular point
B) A regular point
C) A periodic point
D) A critical point
Answer Key:
1. C
2. D
3. C
4. C
5. D
6. C
7. B
8. B
9. C
10. B
Solution:
Find the first four terms of the power series solution for the differential equation:
y'' − y = 0
Solution:
Start by assuming:
y(x) = ∑ aₙ * xⁿ
Let m = n − 2
n=m+2
∑ (m = 0 to ∞) [ (m + 2)(m + 1) * aₘ₊₂ − aₘ ] * xᵐ = 0
(m + 2)(m + 1) * aₙ₊ ₂ − aₙ = 0
aₙ₊ ₂ = aₙ / (m + 2)(m + 1)
Then: a₂ = a₀ / 2 = A / 2
a₃ = a₁ / 6 = B / 6
a₄ = a₂ / 12 = (A / 2) / 12 = A / 24
a₅ = a₃ / 20 = (B / 6) / 20 = B / 120
Solution:
Assume
y(x) = ∑ (n = 0 to ∞) aₙ * xⁿ
Let m = n − 2
n=m+2
Then:
∑ (m = 0 to ∞) (m + 2)(m + 1) * aₘ₊₂ * xᵐ + ∑ (m = 0 to ∞) aₘ * xᵐ = 0
∑ (m = 0 to ∞) [ (m + 2)(m + 1) * aₘ₊₂ + aₘ ] * xᵐ = 0
(m + 2)(m + 1) * aₙ₊ ₂ + aₙ = 0
So,
y(x) = a₀ + a₁ x + a₂ x² + a₃ x³ + a₄ x⁴ + a₅ x⁵ + a₆ x⁶ + ...
= 1 − (1/2)x² + (1/24)x⁴ − (1/720)x⁶ + ...
Final Answer:
y(x) = cos(x)
Solution:
Let aₙ = (−1)ⁿ / n²
Then:
S(x) = ∑ aₙ * xⁿ
Now:
n² / (n + 1)² → 1 as n → ∞
L = |x| * 1 = |x|
1. At x = 1:
S(1) = ∑ (−1)ⁿ / n²
Converges by alternating series test
2. At x = −1:
S(−1) = ∑ (−1)ⁿ * (−1)ⁿ / n² = ∑ 1 / n²
Converges
Final Answer:
Radius of convergence R = 1
Interval of convergence: [−1, 1]
3. Obtain the first four non-zero terms of the power series solution to:
y'' − 3x * y' + 2y = 0, given y(0) = 2, y'(0) = 1
17. Explain the difference between regular and irregular singular points using examples.
18. For the equation x² * y'' + 5x * y' + 3y = 0, classify the point x = 0 and determine an
appropriate method of solution.
19. Derive the recurrence relation for the general solution of:
y'' − x * y' + y = 0, and identify the pattern.
Prove that the power series solution to y'' = y leads to the exponential function, and determine
the radius of convergence..
References
● Boyce, W. E., & DiPrima, R. C. (2017). Elementary Differential Equations and Boundary
Value Problems (11th ed.). Wiley.
● Simmons, G. F. (1972). Differential Equations with Applications and Historical Notes.
McGraw-Hill.
● Coddington, E. A. (1955). An Introduction to Ordinary Differential Equations. Prentice
Hall.
Chapter 3: Frobenius Method, Legendre Equation, and Bessel
Functions
Learning Objectives
After completing this chapter, learners will be able to:
● Understand the Frobenius method and its application to differential equations with
regular singular points.
● Derive and solve the indicial equation.
● Distinguish between different cases based on the roots of the indicial equation.
● Apply the Frobenius method to obtain power series solutions.
● Solve examples involving Frobenius expansions.
y(x) = Σ (n = 0 to ∞) aₙ·xⁿ
y(x) = Σ (n = 0 to ∞) aₙ·xⁿ⁺ ʳ
where r is a number to be determined (possibly non-integer).
This approach is essential when dealing with differential equations having a singularity at the
point of expansion.
If x = 0 is a regular singular point, then p(x) and q(x) are analytic at x = 0, or have poles of order
1 and 2 respectively.
This series is substituted into the differential equation and to collect terms to determine the
coefficients aₙ and the exponent r.
This equation is obtained by collecting terms of the lowest power of x after substitution:
r(r - 1) + p₀ ·r + q₀ = 0
Here,
The roots r₁ and r₂ of the indicial equation determine the form of the solution. The nature of
these roots (real and distinct, equal, or differing by an integer) affects the strategy used for
obtaining a second linearly independent solution.
● The smaller root may yield a solution that contains log(x) terms.
● The first solution:
y₁ (x) = xʳ¹·Σ (n = 0 to ∞) aₙ·xⁿ
● The second solution is of the form:
y₂ (x) = C·y₁ (x)·ln(x) + xʳ²·Σ (n = 0 to ∞) bₙ·xⁿ
y(x) = Σ aₙ·xⁿ⁺ ʳ.
x²·y'' + x·y' - y = 0
Assume:
y = Σ aₙ·xⁿ⁺ ʳ
Then:
y' = Σ (n = 0 to ∞) (n + r)·aₙ·xⁿ⁺ ʳ⁻ ¹
Substitute into the equation and simplify to get the indicial equation:
r² - 1 = 0
r = ±1
Key Terms
● Frobenius Method
● Regular Singular Point
● Indicial Equation
● Recurrence Relation
● Logarithmic Solution
Summary
● Frobenius method generalizes the power series to handle singular points.
● Assumes solutions of the form y(x) = xʳ·Σ aₙ·xⁿ
● Indicial equation determines allowable values of r.
● Nature of r₁ and r₂ defines solution structure.
● Used when ordinary power series fails or is insufficient.
Q1. Which of the following is the correct form of a Frobenius series solution about a regular
singular point ?
A. y(x) = ∑ (n = 0 to ∞) aₙ xⁿ
B. y(x) = ∑ (n = 0 to ∞) aₙ xⁿ⁻ ¹
C. y(x) = ∑ (n = 0 to ∞) aₙ xⁿ⁺ ʳ
D. y(x) = ∑ (n = 1 to ∞) aₙ xⁿ
Q2. The Frobenius method is typically used when the point under consideration is:
A. An ordinary point
B. A singular point of order 2
C. A regular singular point
D. An irregular singular point
A. A differential equation in aₙ
B. A quadratic equation in x
C. A polynomial equation in r
D. A recurrence relation in n
Q4. Suppose the indicial equation has two roots and such that is not an integer. Then:
A. Matrix algebra
B. A recurrence relation
C. Euler’s method
D. Separation of variables
Q7. Which of the following is not an assumption made in the Frobenius method?
A. r(r − 1) = 0
B. r² = 0
C. r² − 1 = 0
D. r² − r = 0
Q10. Let the indicial roots be , . Then the general solution (if both series converge) is of the
form:
A. y(x) = A x² + B x² log(x)
B. y(x) = A x² + B x¹
C. y(x) = A x² + B x² sin(x)
D. y(x) = A x² + B x⁴
Answer Key
1. C
2. C
3. C
4. C
5. C
6. B
7. C
8. B
9. D
10. B
Solved Illustrations
Illustration 1:
Problem:
Solve using Frobenius method:
x²·y'' + x·y' - y = 0
Here,
p(x) = 1 ⇒ x·p(x) = x,
so p₀ = lim (x → 0) x = 0
q(x) = -1
x²·q(x) = -x²,
so q₀ = lim (x → 0) -x² = 0
r(r - 1) + p₀ ·r + q₀ = 0
Step 2: Find the indicial equation
r(r - 1) = 0
r = 0 or r = 1
y(x) = Σ (n = 0 to ∞) aₙ·xⁿ⁺ ʳ
Then:
y' = Σ (n = 0 to ∞) (n + r)·aₙ·xⁿ⁺ ʳ⁻ ¹
y'' = Σ (n = 0 to ∞) (n + r)(n + r - 1)·aₙ·xⁿ⁺ ʳ⁻ ²
Σ (n = 0 to ∞) (n + r)(n + r - 1)·aₙ·xⁿ⁺ ʳ
+ Σ (n = 0 to ∞) (n + r)·aₙ·xⁿ⁺ ʳ
- Σ (n = 0 to ∞) aₙ·xⁿ⁺ ʳ = 0
Combining:
So,
Hence,
(r)² - 1 = 0
r = ±1
So for n ≠ 0,
aₙ = 0 for all n ≥ 1
Hence,
y₁ (x) = a₀ ·x¹ = a₀ ·x
Now try r = -1
Then,
● n = 0 ⇒ a₀
● n = 2 ⇒ a₂ (since for n = 1, a₁ = 0)
For n = 2:
(2 - 1)² - 1 = 1 - 1 = 0
a₂ is free (arbitrary)
So second solution:
But x⁻ ¹ is not analytic at 0, so this is not a Frobenius series solution around x = 0, and typically
this signals the need for a logarithmic term in the second solution.
We conclude:
Illustration 2:
Problem:
Use Frobenius method to solve:
x²·y'' + (1 - x)·y' + y = 0
We can write:
x²·y'' + (1 - x)·y' + y = 0
Already in suitable form with:
p(x) = (1 - x)/x
x·p(x) = 1 - x
p₀ = 1
q(x) = 1
x²·q(x) = x²
q₀ = 0
r=0
Use r = 0, so:
y = Σ aₙ·xⁿ
y' = Σ n·aₙ·xⁿ⁻ ¹
y'' = Σ n(n - 1)·aₙ·xⁿ⁻ ²
Step 4: Substitute into ODE
x²·y'' + (1 - x)·y' + y = 0
Substituting:
So we get:
Or:
● n = 0:
a₁ = -[(0 - 1)²·a₀ ]/1 = -1·C
● n = 1:
a₂ = -[(1 - 1)²·a₁ ]/2 = 0
● n = 2:
a₃ = -[(2 - 1)²·a₂ ]/3 = -1·0/3 = 0
Hence:
y(x) = C·[1 - x]
Illustration 3
Problem:
Solve the differential equation using the Frobenius method:
Solution:
This is a second-order linear differential equation with a regular singular point at x = 0.
y′(x) = ∑ (n = 0 to ∞) aₙ (n + r) xⁿ⁺ ʳ⁻ ¹
1st term:
x² ∑ aₙ (n + r)(n + r − 1) xⁿ⁺ ʳ⁻ ²
= ∑ aₙ (n + r)(n + r − 1) xⁿ⁺ ʳ
2nd term:
x ∑ aₙ (n + r) xⁿ⁺ ʳ⁻ ¹ − x² ∑ aₙ (n + r) xⁿ⁺ ʳ⁻ ¹
= ∑ aₙ (n + r) xⁿ⁺ ʳ − ∑ aₙ (n + r) xⁿ⁺ ʳ⁺ ¹
3rd term:
− ∑ aₙ xⁿ⁺ ʳ
a₀ [(r)(r − 1) + r − 1] = 0
a₀ [r² − 1] = 0
Since a₀ ≠ 0, we have:
r² − 1 = 0
r = 1 or r = −1
From above:
aₙ₊ ₁ = aₙ (n + 1) / (n + 2)
Then:
a₁ = a₀ (0 + 1)/(1 + 2) = a₀ (1/2)
y(x) = x × [a₀ + a₁ x + a₂ x² + a₃ x³ + …]
= x × [C + (C/2)x + (C/4)x² + (3C/20)x³ + …]
Self-Assessment Questions
Instructions:
Use the Frobenius method to find a power series solution about the regular singular point .
Assume the solution of the form
y(x) = ∑ (n = 0 to ∞) aₙ xⁿ⁺ ʳ
and proceed by finding the indicial equation, recurrence relation, and first 3–4 terms of the
series expansion.
Problem 1
x² y″ + 3x y′ − y = 0
Problem 2
x² y″ − x y′ + (x² − 1) y = 0
Problem 3
x² y″ + (2x − x²) y′ − 2y = 0
Problem 4
x² y″ + x y′ + (x² − 4) y = 0
Problem 5
x² y″ − x y′ + y = 0
Problem 6
x² y″ + (4x − x²) y′ − (2 + x) y = 0
Problem 7
x² y″ + (1 − x) y′ − y = 0
Problem 8
x² y″ + (3x + 1) y′ + 2y = 0
Problem 9
x² y″ + x y′ + (x² − 1) y = 0
Problem 10
x² y″ + (2x − 1) y′ − 3y = 0
References
● Boyce, W. E., & DiPrima, R. C. (2017). Elementary Differential Equations and Boundary
Value Problems (11th ed.). Wiley.
● Coddington, E. A. (1955). An Introduction to Ordinary Differential Equations. Prentice
Hall.
● Simmons, G. F. (1972). Differential Equations with Applications and Historical Notes.
McGraw-Hill.
Chapter 4: Legendre Differential Equation –
Theory and Derivation
Learning Objectives
By the end of this chapter, you will be able to:
Where:
4.2. Characteristics
The Legendre equation is:
It is often solved using the Frobenius method or by recognizing its polynomial solution form for
integer n.
y(x) = Σₖ ₌₀^∞ aₖ xᵏ
Substitute this series into the Legendre equation and equate powers of x to derive a recurrence
relation for the coefficients aₖ. When n is a non-negative integer, the series truncates, giving
rise to polynomial solutions of degree n. These are called Legendre Polynomials, denoted by
Pₙ(x).
This representation is particularly useful for theoretical derivations and orthogonality proofs.
4.6. Orthogonality
Legendre polynomials are orthogonal on the interval [−1, 1] with respect to the weight function
w(x) = 1. That is:
∫₋ ₁ ¹ [Pₙ(x)]² dx = 2 / (2n + 1)
● P₀ (x) = 1
● P₁ (x) = x
● P₂ (x) = (3x² − 1)/2
● P₃ (x) = (5x³ − 3x)/2
● P₄ (x) = (35x⁴ − 30x² + 3)/8
● P₅ (x) = (63x⁵ − 70x³ + 15x)/8
This is useful when evaluating integrals or solving symmetric boundary value problems.
And:
∫₋ ₁ ¹ [Pₙ(x)]² dx = 2 / (2n + 1)
This implies that the set {P₀ (x), P₁ (x), ..., Pₙ(x)} forms an orthogonal basis in the space of
square-integrable functions on [−1, 1].
Useful for computing Pₖ₊ ₁ (x) using Pₖ(x) and Pₖ₋ ₁ (x).
This ODE has polynomial solutions only when n is a non-negative integer. For non-integer n, the
solutions are Legendre functions of the first and second kind, denoted Pₙ(x) and Qₙ(x),
respectively.
● Physics:
○ Potential theory and gravitational fields
○ Electrostatics in spherical coordinates
○ Quantum mechanics (spherical harmonics)
● Numerical Methods
○ Spectral methods for solving PDEs
○ Polynomial approximation and orthogonal expansions
● Engineering:
○ Solving Laplace's equation with spherical symmetry
○ Solving boundary value problems
● Mathematics:
○ Fourier–Legendre series expansions
○ Sturm–Liouville theory
Key Terms
● Legendre differential equation
● Legendre polynomials
● Rodrigues’ formula
● Orthogonality
● Generating function
● Recurrence relation
● Parity
Summary / Highlights
● Legendre’s equation appears in problems with spherical symmetry.
● Polynomial solutions exist when n is a non-negative integer.
● Legendre polynomials form an orthogonal basis on [−1, 1].
● Important for physics, numerical methods, and orthogonal expansions.
7. Which of the following is the correct expression for P₀ (x) and P₁ (x)?
A) P₀ (x) = x, P₁ (x) = 1
B) P₀ (x) = 1, P₁ (x) = x
C) P₀ (x) = x², P₁ (x) = x
D) P₀ (x) = 1, P₁ (x) = x²
Answer Key
1. A
2. B
3. A
4. A
5. C
6. C
7. B
8. C
9. A
10. C
Solved Illustrations
Illustration 1
Problem:
Solve the Legendre differential equation for n = 1:
(1 − x²) y″ − 2x y′ + 2y = 0
Solution:
We are given the standard Legendre equation:
(1 − x²) y″ − 2x y′ + n(n + 1) y = 0
Substituting n = 1:
(1 − x²) y″ − 2x y′ + 2 y = 0
Let us try a solution of the form y = P₁ (x), the Legendre polynomial of degree 1.
y=x
y′ = 1
y″ = 0
y(x) = P₁ (x) = x
Illustration 2:
Problem:
Use Rodrigues’ formula to derive P₂ (x), the second-degree Legendre polynomial.
Rodrigues’ formula:
Pₙ(x) = (1 / (2ⁿ n!)) · dⁿ/dxⁿ [(x² − 1)ⁿ]
First derivative:
Second derivative:
Illustration 3:
Problem:
Solve the Legendre differential equation for n = 2:
(1 − x²) y″ − 2x y′ + 6y = 0
Solution:
We are given:
P₂ (x) = (1 / 2)(3x² − 1)
y = (1 / 2)(3x² − 1)
y′ = (1 / 2)(6x) = 3x
y″ = 3
Left-hand side:
Now compute:
Total:
(3 − 3x²) − 6x² + (9x² − 3)
= (3 − 3x² − 6x² + 9x² − 3)
=0
Illustration 4:
Problem:
Verify that P₁ (x) and P₂ (x) are orthogonal over the interval [−1, 1].
Solution:
Legendre polynomials are orthogonal with respect to the weight function w(x) = 1 on [−1, 1].
This means:
We are given:
P₁ (x) = x
P₂ (x) = (1 / 2)(3x² − 1)
We compute:
Evaluate at x = 1:
Evaluate at x = −1:
(1 / 2)[1/4 − 1/4] = 0
4. Verify whether the function y(x) = 5x³ − 3x satisfies the Legendre equation for any n.
12. Show that Pₙ(1) = 1 for all n, and explain its significance in boundary value problems.
End of Chapter 4
Chapter 5: Bessel’s Functions
Learning Objectives
By the end of this chapter, learners will be able to:
Where:
Where:
Differentiate term-by-term:
dy/dx = ∑ (r = 0 to ∞) aᵣ (r + s) x^(r + s − 1)
Substitution yields:
x² ∑ aᵣ (r + s)(r + s − 1) x^(r + s − 2)
+ x ∑ aᵣ (r + s) x^(r + s − 1)
=0
∑ aᵣ (r + s)(r + s − 1) x^(r + s)
∑ aᵣ (r + s) x^(r + s)
3. Third term:
∑ aᵣ x^(r + s + 2) − n² ∑ aᵣ x^(r + s)
∑ aᵣ (r + s)(r + s − 1) x^(r + s)
+ ∑ aᵣ (r + s) x^(r + s)
− ∑ aᵣ n² x^(r + s)
+ ∑ aᵣ x^(r + s + 2) = 0
Combine the first three terms:
+ ∑ aᵣ x^(r + s + 2) = 0
This gives a recurrence relation for coefficients aᵣ, and the value of s is determined by setting
the coefficient of the lowest power of x to zero — leading to the indicial equation:
s² − n² = 0
s = ±n
Where:
Example: J₀ (x)
This function converges for all real values of x and is widely used in practical applications.
c. Derivative Formula
These recurrence relations are useful for simplifying expressions and solving differential
equations involving Bessel functions.
This property is important in expanding functions using the Bessel series in cylindrical problems.
This generating function is a compact expression that produces all Bessel functions as
coefficients of powers of t.
This approximation is helpful in studying the behavior of solutions at large distances or time
scales.
These zeros are crucial in boundary value problems in cylindrical domains, especially in solving
PDEs with radial symmetry.
Summary
● Bessel’s equation arises in cylindrical systems.
● Solutions are expressed via Frobenius method.
● is the Bessel function of the first kind.
● Bessel functions have useful orthogonality and recurrence properties.
● They are essential in boundary value problems with circular symmetry.
A) ∫₀ ^∞ Jₙ(x) dx = 0
B) ∫₀ ^∞ x Jₙ(αₙx) Jₙ(αₙx) dx = 0 for m ≠ n
C) ∫₀ ^∞ x² Jₙ(x) dx = δₙₙ
D) ∫₀ ^∞ Jₙ(x) Jₙ(x) dx = π/2
A) Yₙ(x)
B) Jₙ(x)
C) Iₙ(x)
D) Kₙ(x)
A) J₀ ''(x) + J₀ (x) = 0
B) x²J₀ ''(x) + xJ₀ '(x) + x²J₀ (x) = 0
C) x²J₀ ''(x) + xJ₀ '(x) + xJ₀ (x) = 0
D) x²J₀ ''(x) − xJ₀ '(x) + x²J₀ (x) = 0
7. The generating function for Bessel functions of the first kind is:
8. For small values of x, the Bessel function Jₙ(x) behaves approximately as:
A) Jₙ(x) ≈ xⁿ
B) Jₙ(x) ≈ sin(x)
C) Jₙ(x) ≈ x^(−n)
D) Jₙ(x) ≈ 1/x
Answer Key
1. A
2. B
3. A
4. B
5. A
6. B
7. B
8. A
Solved Illustration 1:
Problem:
Show that the Bessel function of the first kind of order zero,
J₀ (x) = ∑ₙ₌ ₀ ^∞ [ (−1)^k * (x²/4)^k ] / (k!)²
satisfies the Bessel differential equation:
x²y'' + x y' + x²y = 0
Solution:
We are given:
y = J₀ (x) = ∑ₙ₌ ₀ ^∞ [ (−1)^k * (x²/4)^k ] / (k!)²
Second derivative:
y'' = d²/dx² [J₀ (x)]
= ∑ₙ₌ ₁ ^∞ [ (−1)^k * ((2k−1)x² + 2(k−1)) * (x²/4)^(k−2) ] / (k!)²
(Derivative gets complicated, but we proceed symbolically)
If we do the substitution term by term using power series (as in standard Bessel analysis), the
result indeed simplifies to 0, thereby verifying that J₀ (x) satisfies the differential equation.
Conclusion:
Hence, J₀ (x) is a solution of the Bessel equation of order zero.
Solved Illustration 2:
Problem:
Find the first four non-zero terms of the Bessel function of the first kind of order one:
J₁ (x) = ∑ₙ₌ ₀ ^∞ [ (−1)^k * (x/2)^(2k+1) ] / [k! * Γ(k + 2)]
Solution:
Use the definition:
J₁ (x) = ∑ₙ₌ ₀ ^∞ [ (−1)^k * (x/2)^(2k+1) ] / [k! * (k + 1)!]
● For k = 0:
Term₀ = (−1)^0 * (x/2)^1 / (0! * 1!) = x/2
● For k = 1:
Term₁ = (−1)^1 * (x/2)^3 / (1! * 2!) = − x³ / (2³ * 2) = − x³ / 16
● For k = 2:
Term₂ = (−1)^2 * (x/2)^5 / (2! * 3!) = x⁵ / (2⁵ * 12) = x⁵ / 384
● For k = 3:
Term₃ = (−1)^3 * (x/2)^7 / (3! * 4!) = − x⁷ / (128 * 144) = − x⁷ / 18432
Thus,
J₁ (x) ≈ x/2 − x³/16 + x⁵/384 − x⁷/18432
Conclusion:
The series expansion of J₁ (x) up to four terms is:
J₁ (x) ≈ x/2 − x³/16 + x⁵/384 − x⁷/18432
Solved Illustration 3:
Problem:
Given that:
J₀ (1) ≈ 0.7652 and J₁ (1) ≈ 0.4401,
verify the recurrence relation:
J₀ (x) = (2/x) * J₁ (x) − J₂ (x),
and find an approximate value of J₂ (1).
Solution:
We are given:
J₀ (1) = 0.7652
J₁ (1) = 0.4401
x=1
Conclusion:
The approximate value of J₂ (1) is 0.1150, which satisfies the recurrence relation.
Solved Illustration 4:
Problem:
Show that Bessel functions of the first kind of order zero are orthogonal with respect to the
weight function xx, i.e.,
∫₀ ^a x J₀ (αₙx/a) J₀ (αₙx/a) dx = 0
for m ≠ n, where αₙ and αₙ are the m-th and n-th positive roots of J₀ (x) = 0.
Solution:
Let αₙ and αₙ be distinct positive zeros of J₀ (x), i.e.,
J₀ (αₙ) = 0 and J₀ (αₙ) = 0.
We do not compute it explicitly here due to complexity, but the result is proven in advanced
texts using integration by parts and properties of Bessel's differential operator.
Conclusion:
The Bessel functions J₀ (αₙx/a) are orthogonal over [0, a] with weight x when m ≠ n.
Solved Illustration 5:
Problem:
Evaluate the integral:
∫₀ ^a x J₁ (kx) dx
Solution:
We use the known result:
∫₀ ^a x J₁ (kx) dx = a² J₂ (ka) / (2k)
Thus:
∫₀ ^1 x J₁ (2x) dx ≈ 0.3528 / 4 = 0.0882
Conclusion:
∫₀ ^1 x J₁ (2x) dx ≈ 0.0882
Unsolved Problem Set: Bessel Functions
Problem 1:
Show that the Bessel function Jn(x)J_n(x) satisfies the identity:
x Jₙ₋ ₁ (x) + x Jₙ₊ ₁ (x) = 2n Jₙ(x)
Problem 2:
Derive the recurrence relation:
Jₙ₋ ₁ (x) - Jₙ₊ ₁ (x) = 2 Jₙ′(x)
where Jₙ′(x) denotes the derivative of Jₙ(x) with respect to x.
Problem 3:
Prove that the function
y(x) = xⁿ
is not a solution to Bessel’s differential equation for any non-zero order n.
Problem 4:
Use the method of Frobenius to derive the series solution of Bessel’s differential equation of
order zero:
x²y″ + x y′ + x² y = 0
Problem 5:
If
y(x) = J₁ (x),
show that
d/dx [x J₁ (x)] = x J₀ (x)
Problem 6:
Evaluate the integral:
∫₀ ^1 x J₀ (kx) dx
where k is a constant.
Problem 7:
Let α₁ , α₂ , ... be the positive zeros of J₀ (x). Show that the functions
ϕₙ(x) = J₀ (αₙ x)
are orthogonal over the interval [0, 1] with respect to the weight function x.
Problem 8:
Verify that
Jₙ(−x) = (−1)ⁿ Jₙ(x)
and hence determine the parity (evenness or oddness) of Bessel functions.
Problem 9:
Find the value of the Wronskian
W[Jₙ(x), Yₙ(x)]
where Jₙ(x) and Yₙ(x) are the Bessel functions of the first and second kind respectively.
Problem 10:
Using recurrence relations, find J₄ (x) in terms of J₃ (x) and J₂ (x).
References
● Boyce, W. E., & DiPrima, R. C. (2017). Elementary Differential Equations and Boundary
Value Problems. Wiley.
● Zill, D. G. (2018). A First Course in Differential Equations with Modeling Applications.
Cengage Learning.
● Arfken, G. B., Weber, H. J., & Harris, F. E. (2012). Mathematical Methods for Physicists.
Academic Press.
Module 4: Boundary Value Problems
Chapter 1: Introduction to Boundary Value Problems
Learning Objectives
● Define and distinguish boundary value problems (BVPs) from initial value problems
(IVPs).
● Understand the structure of second-order linear BVPs and the concept of well-
posedness.
● Classify BVPs based on regularity, type of equation, boundary conditions, and linearity.
● Apply analytical and numerical methods to solve BVPs.
● Recognize applications of BVPs in physical sciences and engineering.
● Interpret the role of eigenvalue problems and Sturm–Liouville theory in the context of
BVPs.
Boundary Value Problems (BVPs) are a critical class of problems in the study of differential
equations, especially in mathematical physics and engineering, where a differential equation is
solved subject to conditions (constraints) specified at multiple points, frequently at the domain
boundary.
BVPs specify the solution behaviour at the boundaries of the domain, usually at two different
values of the independent variable, as opposed to Initial Value Problems (IVPs), where all the
information about the solution is provided at a single point (often the initial point).
Definition:
A Boundary Value Problem (BVP) is a differential equation together with a set of additional
constraints, called boundary conditions, that the solution must satisfy at the endpoints of the
interval.
(1)
d²y/dx² + p(x) dy/dx + q(x) y = f(x),
for a ≤ x ≤ b,
subject to boundary conditions such as:
y(a) = α, y(b) = β
Here:
1. Well-posedness:
A BVP is considered well-posed if:
○ A solution exists,
○ The solution is unique,
○ The solution depends continuously on the boundary data.
Boundary value problems arise naturally in many physical systems governed by differential
equations. Some examples include:
● Quantum mechanics:
Schrödinger’s equation as a BVP for the energy eigenvalue problem.
● Structural analysis:
Bending of beams and plates modeled via differential equations with deflection and
slope at ends.
Finding a function that "fits" the shape given by the differential equation while also meeting two
or more "pins" or constraints at the boundary is how a BVP is represented. In IVPs, on the
other hand, the function merely "grows" from a known beginning shape.
4.5 Classification of BVPs
Boundary value problems can be classified in various ways based on their structure and
properties.
1. Regular BVP:
A boundary value problem is called regular if:
○ The functions p(x), q(x), and f(x) are continuous over the closed interval
[a, b].
○ The coefficient of the highest-order derivative (usually 1 or non-zero function)
does not vanish within [a, b].
○ The boundary conditions are finite and well-defined at x = a and x = b.
Example:
d²y/dx² + y = sin(x), with y(0) = 0, y(π) = 0
2. Singular BVP:
A BVP is called singular if:
○ One or more of the functions p(x), q(x), or the coefficient of the highest
derivative is discontinuous or unbounded on [a, b].
○ The domain includes points where the equation is not defined (such as division
by zero or infinite behavior).
Example:
d/dx(x dy/dx) + y = 0, with y(0) and y(1) given.
This is singular at x = 0, where x dy/dx becomes undefined.
There are several analytical and numerical methods used to solve BVPs. The method is chosen
depending on their complexity and form.
1. Separation of Variables:
This method is used when the problem can be decomposed into independent functions
of x and t (or other variables). Often leads to eigenvalue problems.
4. Transform Methods:
Techniques like the Laplace or Fourier transform convert the differential equation into an
algebraic one, which is easier to solve.
When exact solutions are difficult or impossible to find, numerical techniques are used:
1. Shooting Method:
○ Converts the BVP into an initial value problem (IVP).
○ Guess initial slope and integrate.
○ Adjust the guess iteratively until the boundary condition at the other endpoint is
satisfied.
Idea:
Example:
Approximate d²y/dx² using:
(y_{i+1} - 2y_i + y_{i-1}) / h² ≈ d²y/dx²
Build a system and solve.
Many BVPs arise as eigenvalue problems, especially in physics where boundary conditions
lead to quantized solutions (e.g., vibrations, quantum mechanics).
Definition:
Here:
Example:
d²y/dx² + λ y = 0,
with y(0) = 0, y(π) = 0
● y(0) = 0 ⇒ B = 0
● y(π) = 0 ⇒A sin(√λ π) = 0
⇒ √λ π = nπ, so λ = n², n ∈ ℕ
Thus:
● Eigenvalues: λₙ = n²
● Eigenfunctions: yₙ(x) = sin(n x)
● Completeness:
The set of eigenfunctions forms a complete basis. Any function which satisfies the
boundary conditions can be expanded as a linear combination of eigenfunctions.
● Sturm–Liouville Form:
Many eigenvalue problems can be written as:
d/dx[p(x) dy/dx] + [λ w(x) - q(x)] y = 0
with boundary conditions.
This is the general form of a Sturm–Liouville problem, central to understanding BVPs
This describes many physical systems like a vibrating string fixed at both ends, and is an ODE-
based BVP.
∂²u/∂x² + ∂²u/∂y² = 0
it is the two-dimensional Laplace’s equation with boundary values specified on the boundary of
a domain.
(B) By Boundary Conditions
Boundary conditions define how the solution behaves at the edges of the domain. The three
classical boundary conditions are:
This often represents physically clamped or fixed systems—e.g., the ends of a string nailed
down.
This models situations like insulated boundaries in heat conduction, where the flux is constant
or zero.
These arise in convection problems and other physical systems where there is interaction
between a system and its surroundings.
(C) By Linearity
Linear BVPs:
Both the differential equation and the boundary conditions are linear. These are easier to
analyze and solve using superposition, eigenfunction expansions, and other analytical tools.
Nonlinear BVPs:
These involve nonlinear operators or boundary conditions. For instance:
d²y/dx² + y³ = 0, y(0) = 0, y(1) = 1
Such equations require special numerical methods and are more complex due to issues of non-
uniqueness, bifurcations, and sensitivity.
Insight:
IVPs describe evolution over time; BVPs define configuration over space.
In a rod of length LL, with temperatures fixed at both ends, the steady-state heat equation
becomes:
This BVP determines how temperature varies spatially in a non-evolving (steady) system.
The vibration of a stretched string of length L fixed at both ends is governed by:
(iii) Electrostatics
Laplace’s equation ∇ 2ϕ=0∇ ²ϕ = 0, subject to boundary potential values, defines how electric
potential behaves inside a closed domain. This is vital in electric field modeling, capacitor
design, and electromagnetic shielding.
The Schrödinger equation is a second-order differential equation where the boundary conditions
reflect physical confinement (e.g., a particle in a box):
Here, solving the BVP gives the energy levels of the particle and wavefunctions ψ(x)ψ(x).
Incompressible fluid velocity profiles (e.g., Poiseuille flow in a pipe) arise from solving BVPs
using the Navier–Stokes equations with boundary conditions like no-slip walls.
1. A boundary value problem (BVP) differs from an initial value problem (IVP) because:
A) BVP requires only initial data for the solution
B) BVP specifies the solution at more than one point
C) BVP applies only to nonlinear equations
D) BVP cannot be solved numerically
Answer Key
1. B
2. B
3. C
4. B
5. B
6. D
7. C
8. B
9. C
10. C
4.13 Summary
Boundary Value Problems are foundational in modeling equilibrium and steady-state behavior
across disciplines. Through classification, analytical and numerical solution techniques, and the
role of eigenvalue problems, BVPs emerge as indispensable tools in scientific computation,
engineering design, and mathematical physics. Sturm–Liouville theory and Green’s functions
provide theoretical strength, while FDM and FEM allow computational implementation.
● Boundary Value Problem (BVP): A differential equation with constraints at more than
one point.
● Well-posedness: A problem that is solvable, has a unique solution, and is stable under
small changes.
● Dirichlet Condition: Fixed value of the function at boundary.
● Neumann Condition: Fixed derivative at boundary.
● Robin Condition: Linear combination of function and derivative at boundary.
● Sturm–Liouville Problem: A second-order linear BVP with spectral parameter λ.
● Eigenvalue: A scalar λ for which a non-trivial solution exists.
● Green’s Function: A special function used to solve nonhomogeneous BVPs.
● Orthogonality: Mutual independence of eigenfunctions under inner product.
● Shooting Method: Converts BVP to IVP iteratively.
ₙ Short Answer
ₙ Long Answer
1. Compare and contrast the classification of BVPs based on linearity and boundary
conditions.
2. Explain the method of Green’s functions for solving linear BVPs.
3. Derive eigenvalues and eigenfunctions for the problem d²y/dx² + λy = 0, with y(0) = 0,
y(π) = 0.
4. Discuss the applications of BVPs in quantum mechanics and fluid flow.
5. Describe the shooting method and finite difference method for solving BVPs.
6. Explain Sturm–Liouville theory and its significance in solving BVPs.
7. Describe the real-world implications of well-posedness in boundary value problems.
Background:
A rod of length L is insulated on the sides and has fixed temperatures T₀ and T₁ at x = 0 and x
= L respectively. The temperature distribution is governed by:
Solution:
The general solution of d²T/dx² = 0 is:
T(x) = Ax + B
● T(0) = B = T₀
● T(L) = AL + B = T₁ ⇒ A = (T₁ − T₀ )/L
So:
Significance:
This solution represents a linear temperature profile — a classical example of a regular, linear
BVP.
Assessment Questions:
4.17 References
● Boyce, W. E., & DiPrima, R. C. (2017). Elementary Differential Equations and Boundary
Value Problems (11th ed.). Wiley.
● Haberman, R. (2012). Applied Partial Differential Equations (5th ed.). Pearson.
● Zill, D. G. (2012). A First Course in Differential Equations with Modeling Applications
(10th ed.). Cengage Learning.
● Simmons, G. F. (1972). Differential Equations with Applications and Historical Notes.
McGraw-Hill.
Chapter 2: Sturm–Liouville Problems
2.1 Learning Objectives
● Understand the historical and mathematical context of Sturm–Liouville theory.
● Recognize the general form and structure of Sturm–Liouville differential equations.
● Explain self-adjointness and the role of inner products.
● Identify and apply appropriate boundary conditions.
● Analyze eigenvalue problems and their properties.
● Explore real-world applications of Sturm–Liouville problems.
Where:
L[y] = λ * w(x) * y
⟨ L[y], z⟩ = ⟨ y, L[z]⟩
This property ensures that the eigenvalues λ are real and the eigenfunctions corresponding to
distinct eigenvalues are orthogonal with respect to the weight function w(x).
y(a) = 0, y(b) = 0
● Neumann (free ends):
y'(a) = 0, y'(b) = 0
● Robin (mixed):
α₁ * y(a) + β₁ * y'(a) = 0
● α₂ * y(b) + β₂ * y'(b) = 0
● These conditions ensure that the operator L remains self-adjoint and that the
eigenfunctions form an orthogonal basis under the inner product.
2.6 Eigenvalue Problems
A Sturm–Liouville problem is thus an eigenvalue problem where we seek values of λ (called
eigenvalues) such that the differential equation has non-trivial solutions y(x) (called
eigenfunctions) satisfying the boundary conditions.
The collection of all such eigenvalues forms the spectrum of the problem. Each eigenvalue λₙ
has a corresponding eigenfunction yₙ(x), and under suitable conditions:
form an orthogonal basis in the Hilbert space L²[a, b] with weight w(x)
with prescribed boundary conditions on the interval [a, b]. The properties of the solutions
(eigenfunctions) and associated values (eigenvalues) are foundational to many
applications in mathematical physics and engineering. Below is an elaboration of each core
property:
Property 1: Orthogonality
Let yₘ(x) and yₙ(x) be two eigenfunctions of the Sturm–Liouville problem with distinct
eigenvalues λₘ ≠ λₙ . Then the orthogonality relation is:
This means that the eigenfunctions are mutually perpendicular under a weighted inner product
space. Orthogonality is a consequence of the self-adjointness of the differential operator L.
If the Sturm–Liouville operator is self-adjoint, then for any eigenfunction y(x), the associated
eigenvalue λ must satisfy:
Since both integrals are real, it follows that λ must be real. This property is essential for physical
systems where imaginary eigenvalues would correspond to non-physical modes.
Property 3: Completeness
Description: The set of eigenfunctions forms a complete basis in the space of square-
integrable functions over [a, b] with respect to the weight w(x).
This means that any sufficiently smooth and well-behaved function f(x) defined on [a, b]
can be expanded as an infinite series of the form:
f(x) = ∑ₙ cₙ · yₙ(x)
where the coefficients are computed via the weighted inner product:
Description: The weight function w(x) defines the inner product space and governs the
orthogonality of the eigenfunctions.
In Sturm–Liouville theory, the inner product of two functions u(x) and v(x) is defined as:
This weighted inner product ensures that the eigenfunctions are orthogonal in a way that is
intrinsic to the differential operator. The weight function arises naturally from the form of the
equation and cannot be arbitrarily chosen.
Property 5: Effect of Boundary Conditions
Description: The boundary conditions directly determine the form of eigenfunctions and
the spectrum of eigenvalues.
The specific type of boundary condition affects which eigenfunctions are admissible. Only
solutions that satisfy the boundary conditions are accepted, and this imposes quantization on
the spectrum of eigenvalues (i.e., discrete values λₙ ).
Description: The classification into regular or singular problems depends on the behavior of
the functions p(x), q(x), w(x) and the interval [a, b].
Occurs when:
Occurs if:
Singular problems often arise in physical systems with infinite domains or singularities, such as
Bessel’s or Legendre’s equations.
2.8 Applications
The Sturm–Liouville theory is a cornerstone in solving boundary value problems (BVPs)
involving linear differential equations, especially in mathematical physics and engineering. Its
applications extend to the solution of partial differential equations (PDEs) using separation
of variables, Fourier series expansions, and eigenfunction expansions.
● Heat Equation
● Wave Equation
● Laplace Equation
In such solutions, the spatial part of the PDE often reduces to a Sturm–Liouville problem.
∂u/∂t = α² ∂²u/∂x²
T'(t)/α²T(t) = X''(x)/X(x) = −λ
X''(x) + λX(x) = 0
This is a classic Sturm–Liouville problem, and the eigenfunctions Xₙ(x) form a Fourier sine
series basis to express the solution.
f(x) = Σₙ cₙ yₙ(x)
3. Quantum Mechanics
The solutions ψ(x) are eigenfunctions, and E are eigenvalues representing quantized energy
levels.
The displacement of a vibrating string fixed at both ends satisfies the wave equation:
∂²u/∂t² = c² ∂²u/∂x²
They provide a basis for decomposing signals into frequency components, enhancing
applications in:
● Audio compression
● Image de-noising
● Feature extraction
In the study of beams and plates (Euler–Bernoulli beam theory), solutions to BVPs involve
eigenvalue problems of the Sturm–Liouville type.
For example, the deflection y(x) of a uniform beam under vibration satisfies:
EI y''''(x) = ρA ∂²y/∂t²
which after separation of variables leads to an ODE in Sturm–Liouville form.
2.9 MCQs
1. A Sturm–Liouville problem is considered regular if:
A) p(x) or r(x) becomes infinite in the interval
B) The interval is infinite
C) The coefficients p(x), q(x), r(x) are continuous and p(x), r(x) > 0 in a finite interval
D) The eigenfunctions are orthonormal
4. Which of the following is true about the eigenvalues in a regular Sturm–Liouville problem?
A) All eigenvalues are imaginary
B) There are only a finite number of eigenvalues
C) All eigenvalues are real and form an infinite sequence
D) They depend on the choice of q(x) only
8. In the inner product defined for a Sturm–Liouville problem, which expression is used?
A) ∫ₐᵇ y₁(x) y₂(x) dx
B) ∫ₐᵇ y₁′(x) y₂′(x) dx
C) ∫ₐᵇ r(x) y₁(x) y₂(x) dx
D) ∫ₐᵇ p(x) y₁″(x) y₂(x) dx
Answer Key
1. C
2. B
3. C
4. C
5. B
6. C
7. B
8. C
9. C
10. A
Problem:
Show that the differential equation
d/dx [ (1 − x²) dy/dx ] + λy = 0
is a Sturm–Liouville problem on the interval −1 < x < 1.
Solution:
Here,
p(x) = 1 − x²
q(x) = 0
r(x) = 1
Problem:
Let yₙ(x) and yₘ(x) be eigenfunctions of a regular Sturm–Liouville problem:
d/dx [ p(x) dy/dx ] + [ λr(x) − q(x) ] y = 0
Show that if λₙ ≠ λₘ, then:
∫ₐᵇ r(x) yₙ(x) yₘ(x) dx = 0
Solution:
L[yₙ] = λₙ r(x) yₙ
L[yₙ] = λₙ r(x) yₙ
The left side becomes zero due to self-adjointness and boundary conditions.
Problem:
Solve the Sturm–Liouville problem:
d²y/dx² + λy = 0
on the interval [0, π], with boundary conditions y(0) = 0, y(π) = 0.
Solution:
Case 1: λ = 0
y″ = 0 ⇒ y(x) = A + Bx
Apply BCs:
y(0) = A = 0, y(π) = A + Bπ = 0 ⇒ B = 0
⇒ y(x) ≡ 0 ⇒ Trivial Solution
Case 2: λ < 0
Let λ = −μ² ⇒ y″ − μ²y = 0
General solution: y(x) = A e^{μx} + B e^{−μx}
Apply BCs ⇒ Only trivial solution ⇒ Reject
Case 3: λ = μ² > 0
Let λ = μ² ⇒ y″ + μ²y = 0
General solution: y(x) = A sin(μx) + B cos(μx)
Apply BCs:
y(0) = B = 0
y(π) = A sin(μπ) = 0
For non-trivial solution ⇒ sin(μπ) = 0 ⇒ μπ = nπ ⇒ μ = n
Thus,
λₙ = n², yₙ(x) = sin(n x), n = 1, 2, 3, …
Eigenvalues: λₙ = n²
Eigenfunctions: yₙ(x) = sin(n x)
Problem:
Solve the Sturm–Liouville problem:
d/dx [ x dy/dx ] + λx y = 0, for x ∈ (0, 1),
with boundary conditions y(0) finite, y(1) = 0.
Solution:
Where:
p(x) = x, q(x) = 0, r(x) = x
Let’s simplify: x y″ + y′ + λx y = 0
Then,
y′ = n xⁿ⁻ ¹, y″ = n(n−1) xⁿ⁻ ²
Substitute into the equation: x [n(n−1)xⁿ⁻ ²] + n xⁿ⁻ ¹ + λx · xⁿ = 0
⇒ n(n−1)xⁿ⁻ ¹ + n xⁿ⁻ ¹ + λ xⁿ⁺ ¹ = 0
⇒ [n(n−1) + n] xⁿ⁻ ¹ + λ xⁿ⁺ ¹ = 0
⇒ n² xⁿ⁻ ¹ + λ xⁿ⁺ ¹ = 0
This cannot hold for all x unless each term separately vanishes.
So try solution by power series or numerical methods, or use known results.
Known eigenfunctions:
yₙ(x) = J₀ (αₙ x), where J₀ is the Bessel function of the first kind of order 0
Eigenvalues:
λₙ = (αₙ)², where αₙ is the nth zero of J₀ (x)
Apply BC:
y(1) = 0 ⇒ J₀ (αₙ) = 0
Thus,
Eigenfunctions: yₙ(x) = J₀ (αₙ x)
Eigenvalues: λₙ = αₙ², where αₙ is the nth zero of J₀
Problem:
Reduce the equation
(x² y′)′ + λ x² y = 0
into standard Sturm–Liouville form.
Solution:
We are given:
(x² y′)′ + λ x² y = 0
We identify:
p(x) = x²
r(x) = x²
q(x) = 0
● p(x) = x²
● q(x) = 0
● r(x) = x²
This is regular in the domain x ∈ (0, ∞) or any finite interval (a, b) with a > 0.
Differentiate:
d/dx [x² y′] = 2x y′ + x² y″
So, the equation becomes:
x² y″ + 2x y′ + λ x² y = 0
Divide by x²:
y″ + (2/x) y′ + λ y = 0
Substitute:
n(n−1)xⁿ⁻ ² + (2/x) n xⁿ⁻ ¹ + λ xⁿ = 0
⇒ [n(n−1) + 2n] xⁿ⁻ ² + λ xⁿ = 0
⇒ [n² + n] xⁿ⁻ ² + λ xⁿ = 0
Again, this does not satisfy the equation unless λ = 0 or x is a specific value.
So we note the standard form and try series or numerical solutions.
Conclusion:
Problem 3:
Determine whether the following Sturm–Liouville problem is regular or singular:
d/dx(x dy/dx) + λx y = 0, for x ∈ (0, 1),
with boundary conditions y(0) finite, y(1) = 0.
Problem 4:
Prove that eigenfunctions corresponding to distinct eigenvalues of a regular Sturm–Liouville
problem are orthogonal with respect to the weight function w(x).
Problem 5:
Convert the following boundary value problem into a Sturm–Liouville form:
y″ + λy = 0, for x ∈ (0, π),
with boundary conditions y(0) = 0, y′(π) = 0.
Problem 6:
Given the Sturm–Liouville form:
(sin x y′)′ + λ sin x y = 0, for x ∈ (0, π),
determine the appropriate orthogonality relation for the eigenfunctions.
Problem 7:
Let L[y] = −(p(x) y′)′ + q(x) y. Show that the inner product
⟨f, g⟩ = ∫ₐ ᵇ f(x)g(x)w(x) dx
ensures that L is symmetric under certain conditions on p(x), q(x), and w(x).
Problem 8:
Suppose φₙ(x) are eigenfunctions of a Sturm–Liouville problem with weight function w(x).
Prove that the set {φₙ(x)} is complete in the space of square-integrable functions over with
respect to w(x).
Problem 9:
Given a nonhomogeneous Sturm–Liouville equation:
(p(x)y′)′ + [λw(x) + q(x)]y = f(x)
with appropriate boundary conditions, describe the general strategy using eigenfunction
expansion to find the solution.
Problem 10:
For the problem:
d/dx(x² dy/dx) + λx² y = 0, for x ∈ (1, e),
with boundary conditions y(1) = 0, y(e) = 0,
determine whether the problem is regular and what is the weight function.
2.12 Summary
Sturm–Liouville theory provides a powerful and unifying approach for solving a wide range of
problems in mathematical physics. Its properties of orthogonality, completeness, and real
eigenvalues underpin many techniques for solving PDEs and modeling physical systems.
Learning Objectives
3.1 Introduction
Many boundary value problems (BVPs) in mathematical physics, engineering, and applied
mathematics can be modeled using linear differential equations. In particular, inhomogeneous
problems of the form:
L[y(x)] = f(x)
In these situations, Green’s functions provide a structured and graceful method for addressing
these equations, particularly when homogeneous boundary conditions are applied. This
technique converts the differential problem into an integral form, thus transforming the challenge
of solving a differential equation into the task of calculating an integral. Green's function can be
viewed as the impulse response of the operator L, much like how systems react to a Dirac delta
function input in control theory or signal processing.
Let L be a linear differential operator acting on a suitable function space over an interval [a, b],
and suppose we want to solve:
with G(x, ξ) satisfying the same boundary conditions in the variable x as y(x).
Here, δ(x − ξ) is the Dirac delta function, and ξ is a fixed point in [a, b]. Conceptually, G(x, ξ)
captures the response of the system described by L to a unit impulse applied at x = ξ.
The Dirac delta function δ(x − ξ) is not a function in the classical sense, but a generalized
function or distribution, with the defining property:
the function G(x, ξ) must be constructed so that the effect of L acting on G produces this
idealized impulse at x = ξ.
Let us now specialize to second-order linear differential operators, which are most common
in applications. Consider:
This leads to a piecewise-defined function G(x, ξ), which is smooth except for a discontinuity in
its derivative at x = ξ.
Green’s functions:
L[y(x)] = f(x),
where L is a linear differential operator and f(x) is a known forcing function.
Using Green’s function G(x, ξ), the solution y(x) is given by the integral:
Here:
∇ ²φ(x) = -ρ(x)/ε₀
∇ ²G(x, ξ) = -δ(x - ξ)
Hence,
3. Heat Conduction
∂u/∂t = α ∂²u/∂x²
With initial and boundary conditions, the solution can be expressed as:
where:
∂²u/∂t² = c² ∂²u/∂x²
where:
● G(x, t; ξ, τ) satisfies the homogeneous wave equation with an impulse at position ξ and
time τ.
● f(ξ, τ) represents the external force acting on the string.
The Green’s function for the operator (d²/dx² + k²) is used to express the wavefunction:
In structural analysis, Green’s functions can be used to compute the deflection y(x) of a beam
subjected to a distributed load q(x), modeled by:
EI d⁴y/dx⁴ = q(x)
This enables the superposition of effects of distributed loads on structures like beams and
plates.
● How boundary inputs (e.g., heat or force applied) influence the system.
● The location or magnitude of unknown sources within a domain.
For example, if the temperature distribution u(x) is measured, and the Green’s function is
known, one may attempt to recover f(x) in:
This is the essence of inverse problems, which are ill-posed but important in geophysics,
medical imaging, etc.
1. What is the defining property of a Green’s function G(x, ξ) for a linear differential operator L?
A) L(G(x, ξ)) = 1
B) L(G(x, ξ)) = δ(x − ξ)
C) L(G(x, ξ)) = 0
D) G(x, ξ) = δ(x + ξ)
2. Which of the following best describes the role of the Dirac delta function in the Green’s
function approach?
A) It smooths out the solution.
B) It replaces the boundary condition.
C) It acts as a source term concentrated at a point.
D) It defines the eigenvalue of the system.
3. For the problem L(y) = f(x) with suitable boundary conditions, the solution using Green’s
function is given by:
A) y(x) = ∫ G(x, ξ) dξ
B) y(x) = ∫ f(ξ) dξ
C) y(x) = ∫ G(ξ, x) f(ξ) dξ
D) y(x) = f(x) × G(x, x)
7. What is the advantage of using Green’s function in solving linear inhomogeneous differential
equations?
A) It avoids the need to solve the homogeneous part.
B) It transforms the problem into a boundary value problem.
C) It allows expressing the solution as an integral involving the forcing function.
D) It removes all need for boundary conditions.
8. In the context of partial differential equations, Green’s functions are used to solve:
A) Only time-dependent equations
B) Only Laplace’s equation
C) Linear PDEs with boundary conditions
D) Nonlinear differential equations
10. If G(x, ξ) is the Green’s function for the operator L, then the solution y(x) to L(y) = f(x) is:
A) y(x) = G(x, x) × f(x)
B) y(x) = ∫ f(ξ) × G(x, ξ) dξ
C) y(x) = ∫ δ(x − ξ) × f(ξ) dξ
D) y(x) = ∫ G(x, ξ) dx
Answer Key
1. B
2. C
3. C
4. C
5. A
6. C
7. C
8. C
9. C
10. B
Key Terms
● Green’s function
● Dirac delta function
● Linear operator
● Boundary value problem
● Impulse response
● Jump condition
● Integral representation
Solved Illustrations
Problem:
d²y/dx² = f(x),
with boundary conditions y(0) = y(1) = 0.
Solution:
This is a second-order linear differential equation with homogeneous boundary conditions.
● For x < ξ
● For x > ξ
Continuity at x = ξ:
A(ξ)⋅ ξ = C(ξ)⋅ ξ + D(ξ)
⇒ C(ξ)⋅ ξ + ξ = C(ξ)⋅ (ξ − 1)
⇒ ξ = −C(ξ) ⇒ C(ξ) = −ξ
Then, A(ξ) = −ξ + 1
Now we have:
Problem:
d²y/dx² = x,
y(0) = y(1) = 0
Solution:
G(x, ξ) =
(1 − ξ)⋅ x for 0 ≤ x < ξ
ξ⋅ (1 − x) for ξ < x ≤ 1
So:
∫₀ ˣ (1 − ξ)⋅ ξ dξ
= ∫₀ ˣ (ξ − ξ²) dξ
= [ξ²/2 − ξ³/3] from 0 to x
= x²/2 − x³/3
∫ₓ¹ ξ² dξ
= [ξ³/3] from x to 1
= (1/3) − x³/3
Now substitute:
−x⁴/3 + x⁴/3 = 0
x³/2 − x³/3 = x³⋅ (1/2 − 1/3) = x³/6
Final result:
Solved Illustration 3
Solution:
We need to find y(x) such that: L(y) = d²y/dx² = sin(x), with y(0) = y(π) = 0.
The Green’s function G(x, ξ) for the operator L = d²/dx² with Dirichlet BCs (y = 0 at both ends)
over [0, π] is given by:
G(x, ξ) =
(ξ(π − x))/π for x < ξ
(x(π − ξ))/π for x ≥ ξ
This can be evaluated using integration by parts or numerically for a particular value of x. For
example, at x = π/2:
First integral: ∫₀ ^{π/2} (ξ(π − π/2)/π) sin(ξ) dξ = (π/2π) ∫₀ ^{π/2} ξ sin(ξ) dξ
= (1/2) ∫₀ ^{π/2} ξ sin(ξ) dξ
= (1/2) [−ξ cos(ξ) + ∫ cos(ξ) dξ]₀ ^{π/2}
= (1/2)[−(π/2) cos(π/2) + sin(π/2) − (0 − 0)] = (1/2)(0 + 1) = 0.5
Solved Illustration 4
Solution:
We want the solution to: d²y/dx² = 1, on [0, 1], with y(0) = y(1) = 0
First integral:
∫₀ ^x ξ(1 − x) dξ = (1 − x) ∫₀ ^x ξ dξ = (1 − x)(x²/2)
Second integral:
∫ₓ^1 x(1 − ξ) dξ = x ∫ₓ^1 (1 − ξ) dξ = x[(1 − ξ)²/2]ₓ^1 = x[(1 − x)²/2]
Self-Assessment Questions
Instructions: Solve the following boundary value problems using Green’s function methods.
Express the general form of the Green’s function and the integral solution. Wherever applicable,
perform explicit integration.
Problem 1
Problem 2
Problem 3
Problem 4
Problem 5
Problem 6
Consider the non-homogeneous equation:
d²y/dx² − y = x, with y(0) = y(1) = 0
Construct the corresponding Green’s function and evaluate the solution.
Problem 7
Problem 8
Problem 9
Problem 10
Learning Objectives
In contrast to initial value problems (IVPs), which set conditions at a single location (typically the
beginning of the range), boundary value problems (BVPs) define conditions at two or more
separate points. This approach more effectively represents real-world systems in areas such as
physics, engineering, and applied mathematics.
Example:
To model a string fixed at both ends, you do not need how the string started vibrating (an initial
condition), but you must ensure that its displacement is zero at both fixed ends — this is a
boundary condition.
(1)
d/dx ( p(x) * dy/dx ) + q(x) * y = λ * w(x) * y
(2)
a₁ * y(a) + a₂ * y′(a) = 0
b₁ * y(b) + b₂ * y′(b) = 0
Where:
BVPs naturally arise in equilibrium or steady-state problems in physics and engineering, where
the conditions they create are of more interest than their temporal evolution.
Boundary Value Problems (BVPs) are phenomena such as temperature along a rod or voltage
along a wire that are located over a spatial range and do not change over time.
b) Physics Realism
Boundary conditions, such as fixed endpoints, insulated boundaries, or surfaces of zero flux, are
often used to represent physical constraints.
c) Eigenvalue-Related Issues
Many BVPs become eigenvalue issues, especially in wave mechanics or vibration systems
where certain frequencies (eigenvalues) produce nontrivial solutions.
Consider a rod of length L with thermal conductivity k and heat sources/sinks along its length.
The governing BVP is:
d²T/dx² + f(x)/k = 0, 0<x<L
This represents a BVP because the temperature is fixed at both ends, and we seek the
equilibrium profile T(x).
These reflect different physical setups — fixed temperature, insulated boundaries, or convective
surfaces.
In many cases, the solutions to BVPs form an orthogonal set of eigenfunctions. These
eigenfunctions are used to expand arbitrary input functions (e.g., heat distribution, force
distribution) into a Fourier-like series.
Equation: d²u/dx² = 0
BCs: u(0) = T₁ , u(L) = T₂
Solution: u(x) = [(T₂ - T₁ )/L]·x + T₁
Using separation of variables, spatial ODE becomes: d²X/dx² + λ·X = 0, X(0) = X(L) = 0
Eigenvalues: λₙ = (n·π/L)²
Eigenfunctions: Xₙ(x) = sin(n·π·x / L)
Full solution:
u(x, t) = Σ [Aₙ·cos(n·π·c·t/L) + Bₙ·sin(n·π·c·t/L)] · sin(n·π·x / L)
4.10 Electrostatics
● u(x, y) = Σ Aₙ·sin(n·π·x/a)·sinh(n·π·y/a)
Eigenvalues: Eₙ = (n²·π²·ħ²)/(2m·L²)
Eigenfunctions: ψₙ(x) = √(2/L)·sin(n·π·x/L)
4.12 Fluid Flow: Poiseuille Flow
Summary
Key Terms
● Dirichlet Condition
● Neumann Condition
● Mixed Boundary Condition
● Eigenvalue
● Poiseuille Flow
● Sturm–Liouville System
Self-Assessment Questions
1. In the context of a vibrating string, the solution to the wave equation subject to fixed boundary
conditions is typically expressed using:
A) Fourier series
B) Laplace transform
C) Green’s function
D) Runge-Kutta method
2. Which type of boundary value problem is most associated with steady-state heat conduction?
A) Hyperbolic BVP
B) Elliptic BVP
C) Parabolic BVP
D) Dynamic BVP
3. In the application of BVPs to electrostatics, the potential field u(x, y) often satisfies:
A) ∂u/∂t = α ∂²u/∂x²
B) ∇ ²u = 0
C) d²u/dt² + ω²u = 0
D) ∇ ²u = −ρ
4. The method of separation of variables is commonly used in solving which kind of BVPs?
A) Linear algebraic equations
B) Ordinary differential equations only
C) Partial differential equations with homogeneous boundary conditions
D) Nonlinear PDEs with random forcing
7. The classical heat equation under Dirichlet boundary conditions leads to which form of
general solution?
A) Polynomial solutions
B) Gaussian function
C) Trigonometric series in space and exponential in time
D) Bessel function solutions
8. When using eigenfunction expansions to solve BVPs, the completeness property ensures:
A) Uniqueness of the solution
B) Finite number of eigenvalues
C) That any function satisfying boundary conditions can be represented
D) Orthogonality of the differential operator
9. Which mathematical tool helps solve inhomogeneous BVPs using impulse responses?
A) Newton-Raphson method
B) Laplace transform
C) Green’s function
D) Euler’s method
Answer Key
1. A
2. B
3. B
4. C
5. C
6. C
7. C
8. C
9. C
10. A
Solved Illustrations
Problem:
Solve the one-dimensional heat equation
∂u/∂t = α ∂²u/∂x², for 0 < x < L, t > 0
with boundary conditions:
u(0, t) = 0, u(L, t) = 0
and initial condition:
u(x, 0) = sin(πx/L)
Solution:
We solve using separation of variables.
Assume u(x, t) = X(x) T(t)
Final solution:
u(x, t) = sin(πx/L) × e^(−α(π/L)² t)
Problem:
Solve the wave equation for a string of length L fixed at both ends:
∂²u/∂t² = c² ∂²u/∂x², 0 < x < L, t > 0
with boundary conditions:
u(0, t) = 0, u(L, t) = 0
and initial conditions:
u(x, 0) = sin(2πx/L), ∂u/∂t(x, 0) = 0
Solution:
Use separation of variables:
Let u(x, t) = X(x) T(t)
Substitute:
(1/T) d²T/dt² = c² (1/X) d²X/dx² = −λ
Problem:
Solve Laplace’s equation ∇ ²u = 0 on a square plate 0 < x < 1, 0 < y < 1, with:
● u(0, y) = 0, u(1, y) = 0
● u(x, 0) = 0
● u(x, 1) = 100
Solution:
Assume u(x, y) = X(x) Y(y)
Two ODEs:
X″ + λX = 0 with X(0) = 0, X(1) = 0
⇒ Xₙ(x) = sin(nπx), λ = (nπ)²
Y″ − λY = 0
⇒ Yₙ(y) = Aₙ sinh(nπy)
General solution:
u(x, y) = Σ Aₙ sin(nπx) sinh(nπy)
Would you like a few more illustrations or shall I proceed to the unsolved problem set?
Certainly. Here are three more solved illustrations for the chapter Applications of Boundary
Value Problems, with all equations in Unicode plain text format for direct copy-pasting into
Google Docs:
Problem:
Find the deflection y(x) of a beam of length L simply supported at both ends, subjected to a
uniform load q₀ .
The governing equation is:
d⁴y/dx⁴ = q₀ / EI
with boundary conditions:
y(0) = 0, y(L) = 0
y″(0) = 0, y″(L) = 0
Here, E = modulus of elasticity, I = moment of inertia.
Solution:
Integrate the differential equation:
d⁴y/dx⁴ = q₀ / EI
First integration:
d³y/dx³ = (q₀ /EI)x + C₁
Second:
d²y/dx² = (q₀ /2EI)x² + C₁ x + C₂
Third:
dy/dx = (q₀ /6EI)x³ + (C₁ /2)x² + C₂ x + C₃
Fourth:
y(x) = (q₀ /24EI)x⁴ + (C₁ /6)x³ + (C₂ /2)x² + C₃ x + C₄
● y(0) = 0 ⇒ C₄ = 0
● y(L) = 0 ⇒ (q₀ /24EI)L⁴ + (C₁ /6)L³ + (C₂ /2)L² + C₃ L = 0
● y″(0) = 0 ⇒ C₂ = 0
● y″(L) = 0 ⇒ (q₀ /2EI)L² + C₁ L = 0 ⇒ C₁ = −(q₀ /2EI)L
Problem:
Solve Laplace’s equation ∇ ²φ = 0 in a rectangle 0 < x < a, 0 < y < b, with:
Solution:
Let φ(x, y) = X(x) Y(y)
Then:
X″/X = −Y″/Y = −λ
So,
X″ + λX = 0 with X(0) = 0, X(a) = 0
⇒ λₙ = (nπ/a)², Xₙ(x) = sin(nπx/a)
Y″ − λY = 0
⇒ Yₙ(y) = Aₙ sinh(nπy/a)
General solution:
φ(x, y) = Σ Aₙ sin(nπx/a) sinh(nπy/a)
Final solution:
φ(x, y) = Σ_{n odd} (4V₀ / (nπ sinh(nπb/a))) × sin(nπx/a) sinh(nπy/a)
Problem:
Solve the Sturm–Liouville problem:
(d/dx)[p(x) dy/dx] + [λ w(x)] y = 0, 0<x<π
with: p(x) = 1, w(x) = 1, and boundary conditions y(0) = y(π) = 0.
Solution:
Substitute p(x) = w(x) = 1 into the equation:
d²y/dx² + λy = 0
Apply y(0) = 0 ⇒ B = 0
Apply y(π) = 0 ⇒ sin(√λ π) = 0 ⇒ √λ π = nπ ⇒ λ = n², n = 1, 2, 3, ...
Eigenvalues: λₙ = n²
Eigenfunctions: yₙ(x) = sin(n x)
Unsolved Problem Set: Applications of Boundary Value
Problems
A rod of length L is perfectly insulated along its lateral surface. The temperature u(x, t) in the rod
satisfies the heat equation:
∂u/∂t = α² ∂²u/∂x², 0 < x < L, t > 0
A cantilever beam of length L is fixed at x = 0 and free at x = L. The beam is subject to a point
load P at the free end. The governing equation is:
EI d⁴y/dx⁴ = 0
Boundary conditions:
y(0) = 0, dy/dx(0) = 0
d²y/dx²(L) = 0, d³y/dx³(L) = −P/EI
Boundary conditions:
φ(x, 0) = 0, φ(x, 1) = 0
φ(0, y) = 0, φ(1, y) = V₀
Let L[y] = −d²y/dx² on the interval 0 < x < 1, with boundary conditions y(0) = y(1) = 0.
Find the Green’s function G(x, ξ) that satisfies:
L[G(x, ξ)] = δ(x − ξ)
Formulate this as a boundary value problem and discuss its qualitative behavior.
The velocity profile u(y) of fluid flowing between two plates is governed by:
μ d²u/dy² = dp/dx
● Boyce, W. E., & DiPrima, R. C. (2017). Elementary Differential Equations and Boundary
Value Problems (11th ed.). Wiley.
● Haberman, R. (2012). Applied Partial Differential Equations with Fourier Series and
Boundary Value Problems (5th ed.). Pearson.
● Strauss, W. A. (2007). Partial Differential Equations: An Introduction (2nd ed.). Wiley.
End of Chapter 4