Finding Solutions to Second Order Differential Equations with Initial Conditions

cemar.
Messages
41
Reaction score
0
y'' - 8y' + 16 = 0 ; y(0) = 4 ; y'(0) = 9


this should be not too bad but I am stuck in the same place.
m^2 - 8m + 16
m1 = m2 = 4

y = C1e^(mx) + C2(e^(mx))
sub in y(0) = 4
4 = C1 + C2
C1 = 4-C2

y' = mC1e^(mx) + mC2e^(mx)
sub in y'(0) = 9
9 = mC1 + mC2
C1 = 4 - C2 (from above), m=4
9 = 4(4-C2) + 4C2
9 = 16 - 4C2 + 4C2
9 = 16
In this case would there just be no solution or am i missing something?!?
Thank you!
 
Physics news on Phys.org
If I recall correctly, the general solution in the case of a repeated root for a second order constant coefficients ODE is
c_1e^{m_1x} + c_2xe^{m_1x}
 
Hey
The formula you are using for y is only valid if you have to different solutions m, i.e.
m_{1}\neq{m_{2}}

In your case y is given by

y=(C_{1}+C_{2}x)e^{mx}
 
thanks!
 
Well done, guys.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top