Michael K. answered 10/31/21
PhD professional for Math, Physics, and CS Tutoring and Martial Arts
So with this third order linear differential equation (which happens to have constant coefficients), we want to see if we can determine a solution with mimics y = erx. Here r is a parameter we wish to solve, thereby changing the differential equation into an algebraic one...
y(x) = erx
y'(x) = rerx
y"(x) = r2erx
y"'(x) = r3erx
Plugging in our ansatz (guess solution)...
r3erx - 5r2erx - rerx + 5erx = 0
erx (r3 - 5r2 - r + 5) = 0
We can safely divide by erx since it cannot be zero unless r*x = +/- ∞
Therefore, we are looking for solutions of the cubic equation...
r3 - 5r2 - r + 5 = 0
(r3 - 5r2)- (r - 5) = 0
r2(r - 5) - (r - 5) = 0
(r2 - 1) * (r - 5) = 0
This leads to the following solutions for r...
r = 5, -1, +1
Therefore the homogeneous (null/complimentary) solution is
y(x) = Ae5x + Be-x + Cex
Using the initial values we can ascertain A,B,C
y'(x) = 5Ae5x - Be-x + Cex
y"(x) = 25Ae5x + Be-x + Cex
Plugging in x = 0 for each of these derivatives...
y(0) = -4 = A + B + C
y'(0) = -9 = 5A - B + C
y"(0) = 92 = 25A + B + C
You can use linear algebra or substitution methods to solve this system of equations...
A = 4
B = 21/2
C = -37/2
y(x) = 4e5x + 21/2 * e-x - 37/2 * ex