Michael K. answered 06/12/19
PhD professional for Math, Physics, and CS Tutoring and Martial Arts
Solving this differential equation amounts to determining if it is analytic in the domain in question. We can attempt to use a power series representation or use Euler's method if it is analytic...
x2 y''(x) + x y'(x) - y(x) = 0 = y''(x) + 1/x * y'(x) - 1/x2 * y(x)
define P(x) as coefficient of y''(x)
define Q(x) as coefficient of y'(x)
define R(x) as coefficient of y(x)
Analyticity demands that undefined points based on "reduction" have finite values if it is a continuous or regular singular point. Irregular singular points require power series representations with other conditions...
Therefore...
lim (x --> 0) P(x) and lim (x --> 0) xQ(x) and lim (x --> 0) x2R(x) must all be defined...
lim (x --> 0) P(x) = 1
lim (x --> 0) xQ(x) = lim (x --> 0) x * 1/x = 1
lim (x --> 0) x2R(x) = lim (x --> 0) x2 * 1/x2 = 1
We can use Euler's method. Assume a solution to the problem can be cast as y(x) = xr
y'(x) = r x(r-1)
y''(x) = r * (r-1) x(r-2)
Therefore the differential equation is now...
r * (r-1) x(r-2) + r x(r-2) - x(r-2) = 0
Since we can factor this as --> (r*(r-1) + r - 1) * (x(r-2)) = 0, we know that x(r-2) cannot be zero unless x = 0 ( the trivial solution), we are interested in what values of r can also be made to make this differential equation to be zero with our ansatz.
r2 - r + r - 1 = 0 --> r2 -1 = 0
r = ±1
Therefore, the two independent solutions for y(x) are...
y1(x) = x and y2(x) = 1/x
y(x) = C1y1(x) + C2y2(x) = C1x + C2/x
y'(x) = C1y1'(x) + C2y2'(x) = C1 - C2/x2
Using the initial conditions will allow is to solve for C1 and C2.
y(1) = 1 = C1 + C2
y'(1) = 1/2 = C1 - C2
3/2 = 2C1 --> C1 = 3/4 --> C2 = 1/4
Solution --> 3x/4 + 1/(4x)