How to Solve a Second Order Euler Differential Equation
Differential equations have many applications to physics and engineering. A second order differential equation with the form
t2y''(t) + aty'(t) + by(t) = 0,
where a and b are constants, is called an Euler equation. If the equation has initial conditions y(1) = c and y'(1) = d, then the initial value problem can be solved completely. That is, you can find an explicit equation for y(t).
The form of the equation depends on solution to the associated quadratic equation
z2 + (a-1)z + b = 0
and there are three possible cases. You can use the method outlined below to solve these kinds of equations, or use the Euler differential equation solver on the left.
Case I: (a-1)2 - 4b > 0
When (a-1)2 - 4b > 0, the equation has the formy(t) = k1t p + k2t q,
where p = 0.5(1-a) + 0.5sqrt((a-1)2 - 4b) and q = 0.5(1-a) - 0.5sqrt((a-1)2 - 4b). The constants k1 and k2 depend on the initial conditions of the equation. When you plug in the initial conditions into y(t) and y'(t), it creates a system of two linear equations in the variables k1 and k2. Thus you can find the complete solution.
If one of p or q is zero, the solution equation simplifies to y(t) = k1t p + k2.
Case II: (a-1)2 - 4b = 0
When (a-1)2 - 4b = 0, the equation has the formy(t) = k1t p + k2t pLn|t|,
where p = 0.5(1-a). As before, the values of the constants k1 and k2 can be determined from the initial conditions of the problem.
If a = 1 and b = 0, the differential equation solution has the form
y(t) = k1 + k2Ln|t|.
Case III: (a-1)2 - 4b < 0
When (a-1)2 - 4b < 0, the solution to the Euler equation has the formy(t) = t p(k1sin(rLn|t|) + k2cos(rLn|t|)),
where p = 0.5(1-a) and r = 0.5sqrt(4b - (a-1)2).
© Had2Know 2010
