Lesson 2: Characteristic Equation -- Three Cases
Estimated time: 40-50 minutes
Learning Objectives
By the end of this lesson, you will be able to:
- Write the general solution for two distinct real roots
- Handle the repeated root case with the tert trick
- Use Euler's formula to convert complex roots to real-valued solutions
- Identify oscillatory, decaying, and growing behavior from the roots
- Solve IVPs for all three cases
Case 1: Two Distinct Real Roots (D > 0)
When b² - 4ac > 0, the characteristic equation ar² + br + c = 0 has two distinct real roots r1 ≠ r2.
Case 1 General Solution: y(t) = c1er1t + c2er2t
Example 1: Distinct Real Roots
Solve y'' + y' - 6y = 0.
Characteristic equation: r² + r - 6 = 0 ⇒ (r+3)(r-2) = 0 ⇒ r = -3, 2.
General solution: y(t) = c1e-3t + c2e2t.
Behavior: The e-3t term decays; the e2t term grows. Unless c2 = 0, solutions grow unboundedly.
Case 2: Repeated Root (D = 0)
When b² - 4ac = 0, there is one repeated root r = -b/(2a). We get only one exponential solution ert. The second linearly independent solution is tert.
Case 2 General Solution: y(t) = c1ert + c2tert = (c1 + c2t)ert
Example 2: Repeated Root
Solve y'' - 4y' + 4y = 0.
Characteristic equation: r² - 4r + 4 = 0 ⇒ (r-2)² = 0 ⇒ r = 2 (repeated).
General solution: y(t) = c1e2t + c2te2t = (c1 + c2t)e2t.
Example 3: Repeated Root IVP
Solve y'' + 6y' + 9y = 0, y(0) = 2, y'(0) = -1.
Step 1: r² + 6r + 9 = (r+3)² = 0 ⇒ r = -3 (repeated).
Step 2: y = (c1 + c2t)e-3t.
Step 3: y(0) = c1 = 2.
Step 4: y' = c2e-3t - 3(c1 + c2t)e-3t. y'(0) = c2 - 3c1 = c2 - 6 = -1, so c2 = 5.
Answer: y(t) = (2 + 5t)e-3t.
Case 3: Complex Conjugate Roots (D < 0)
When b² - 4ac < 0, the roots are complex conjugates: r = α ± βi where α = -b/(2a) and β = √(4ac - b²)/(2a).
Euler's Formula: eiβt = cos(βt) + i sin(βt). This lets us convert complex exponentials into real-valued functions.
Case 3 General Solution: y(t) = eαt[c1cos(βt) + c2sin(βt)]
The factor eαt controls growth/decay. The trig functions create oscillations with frequency β.
Example 4: Complex Roots
Solve y'' + 4y' + 13y = 0.
Step 1: r² + 4r + 13 = 0. D = 16 - 52 = -36.
Step 2: r = (-4 ± √(-36))/2 = (-4 ± 6i)/2 = -2 ± 3i.
So α = -2, β = 3.
General solution: y(t) = e-2t[c1cos(3t) + c2sin(3t)].
Behavior: Decaying oscillation (since α = -2 < 0).
Example 5: Pure Oscillation
Solve y'' + 9y = 0.
Characteristic equation: r² + 9 = 0 ⇒ r = ±3i. Here α = 0, β = 3.
General solution: y(t) = c1cos(3t) + c2sin(3t).
Behavior: Pure oscillation with no decay or growth (since α = 0). This is simple harmonic motion.
Summary of All Three Cases
| Discriminant | Roots | General Solution |
|---|---|---|
| D > 0 | r1, r2 real distinct | c1er1t + c2er2t |
| D = 0 | r repeated | (c1 + c2t)ert |
| D < 0 | α ± βi | eαt[c1cos(βt) + c2sin(βt)] |
Check Your Understanding
1. Solve y'' - 2y' - 8y = 0.
2. Solve y'' + 2y' + y = 0.
3. Solve y'' + 2y' + 5y = 0.
4. For complex roots α ± βi, under what condition do solutions decay?
Key Takeaways
- Distinct real roots r1, r2: y = c1er1t + c2er2t.
- Repeated root r: y = (c1 + c2t)ert. The extra factor of t provides the second independent solution.
- Complex roots α ± βi: y = eαt[c1cos βt + c2sin βt]. Euler's formula bridges complex and real forms.
- α < 0 means damped oscillation, α = 0 means pure oscillation, α > 0 means growing oscillation.
Ready for More?
Next Lesson
In Lesson 3, you will learn undetermined coefficients to solve nonhomogeneous equations.
Start Lesson 3