Lesson 1: Homogeneous with Constant Coefficients
Estimated time: 35-45 minutes
Learning Objectives
By the end of this lesson, you will be able to:
- Recognize the standard form ay'' + by' + cy = 0
- Explain the superposition principle for linear homogeneous ODEs
- Derive the characteristic equation from the exponential guess y = ert
- State the general solution structure using two linearly independent solutions
- Verify linear independence using the Wronskian
The Standard Form
A second-order linear ODE with constant coefficients has the form:
ay'' + by' + cy = g(t)
where a, b, c are constants and g(t) is the forcing function. When g(t) = 0, the equation is homogeneous.
Homogeneous Second-Order Linear ODE: ay'' + by' + cy = 0 with a ≠ 0. This is the equation we solve in this lesson.
The Superposition Principle
Superposition Principle: If y1 and y2 are solutions to the homogeneous equation ay'' + by' + cy = 0, then c1y1 + c2y2 is also a solution for any constants c1, c2.
This means the set of all solutions forms a two-dimensional vector space. We need exactly two linearly independent solutions to span it.
The Characteristic Equation
We guess y = ert for some constant r. Substituting into ay'' + by' + cy = 0:
a r² ert + b r ert + c ert = 0
ert(ar² + br + c) = 0
Since ert ≠ 0, we need:
Characteristic Equation: ar² + br + c = 0. The roots r1 and r2 determine the form of the general solution.
The discriminant D = b² - 4ac determines three cases:
- D > 0: Two distinct real roots (covered in Example 1 below; detailed in Lesson 2)
- D = 0: One repeated real root (detailed in Lesson 2)
- D < 0: Complex conjugate roots (detailed in Lesson 2)
Example 1: Distinct Real Roots
Solve y'' - 5y' + 6y = 0.
Step 1: Characteristic equation: r² - 5r + 6 = 0.
Step 2: Factor: (r - 2)(r - 3) = 0, so r1 = 2, r2 = 3.
Step 3: General solution: y(t) = c1e2t + c2e3t.
Example 2: Finding Particular Solutions from IVPs
Solve y'' - 5y' + 6y = 0, y(0) = 2, y'(0) = 5.
Step 1: General solution: y = c1e2t + c2e3t (from Example 1).
Step 2: Apply y(0) = 2: c1 + c2 = 2.
Step 3: y' = 2c1e2t + 3c2e3t. Apply y'(0) = 5: 2c1 + 3c2 = 5.
Step 4: Solve the system: c1 = 1, c2 = 1.
Answer: y(t) = e2t + e3t.
Linear Independence and the Wronskian
Wronskian: For two functions y1 and y2, the Wronskian is W(y1, y2) = y1y2' - y2y1'. If W ≠ 0, the functions are linearly independent.
Example 3: Checking Linear Independence
Verify that y1 = e2t and y2 = e3t are linearly independent.
W = e2t · 3e3t - e3t · 2e2t = 3e5t - 2e5t = e5t ≠ 0.
Since W ≠ 0, the solutions are linearly independent, confirming they form a fundamental set.
Structure of the General Solution
General Solution (Homogeneous): If y1 and y2 are linearly independent solutions, then the general solution is y = c1y1 + c2y2, where c1 and c2 are arbitrary constants. An IVP with y(t0) = y0, y'(t0) = y0' determines c1 and c2 uniquely.
Check Your Understanding
1. Write the characteristic equation for y'' + 4y' + 3y = 0 and find its roots.
2. Solve y'' - y = 0.
3. Compute the Wronskian of y1 = e-t and y2 = e-3t.
4. Why does a second-order ODE need two initial conditions to determine a unique solution?
Key Takeaways
- For ay'' + by' + cy = 0, guess y = ert to get the characteristic equation ar² + br + c = 0.
- The superposition principle says any linear combination of solutions is also a solution.
- Two linearly independent solutions form a fundamental set; the general solution is y = c1y1 + c2y2.
- The Wronskian W = y1y2' - y2y1' tests linear independence (W ≠ 0 means independent).
- An IVP needs two initial conditions (y and y') to determine the two constants.
Ready for More?
Next Lesson
In Lesson 2, you will master all three cases of the characteristic equation in detail.
Start Lesson 2