Alternate Method for solving two Second Order DEs.

  • Thread starter Thread starter maverick280857
  • Start date Start date
  • Tags Tags
    Method Second order
maverick280857
Messages
1,774
Reaction score
5
Hello everyone

The following two differential equations appear on page 93 of George Simmons' book on Differential Equations. While I have been able to solve them, I have some questions. [Not HW]

I. (x^2-1)y'' - 2xy' + 2y = (x^2-1)^2
II. (x^2 + x)y'' + (2-x^2)y' - (2+x)y = x(x+1)^2

How I solved them:

For the first equation, y = x is a solution of the homogeneous part as can be verified by inspection. From this we can construct a second solution y = xv(x) with v(x) given by

v(x) = \int \frac{1}{x^2}e^{\int \frac{2x}{x^2-1}dx}dx = \left(x + \frac{1}{3x^3}\right)

The homogeneous equation thus has the solution

y_{h}(x) = c_{1}x + c_{2}\left(x^2 + \frac{1}{3x^2}\right)

For the general solution, add a polynomial and compare coefficients.

For the second equation, y = 1/x is a solution of the homogenous part. The second solution is y = v(x)/x where v(x) is given by

v(x) = \int x^2 e^{-\int \frac{2-x^2}{x^2 + x} dx}dx = \int x^2 \left(\frac{1+x}{x^2}\right) e^{x}dx = \int (x+1)e^{x}dx = xe^{x}

The general solution to the homogenous part is thus

y_{h}(x) = \frac{c_{1}}{x} + c_{2}e^{x}

The general solution for the nonhomogeneous equation can be constructed as for the first part.

Now, I have two questions:

1. I could "guess" the simple solutions to the homogeneous equations in both cases, but how do I get to this solution rigorously? (I tried some substitutions but none of them worked.)

2. Is there some totally different way out to solve these equations too?

Thanks.
 
Last edited:
Physics news on Phys.org
from my experience, DE is mostly guess and check
 
Ice, I'm sure there's some other way out...the question doesn't say guess and check...
 
Does your textbook have a method for solving equations of the form:

DQy" + My' + Ny = DQ^2

where D, Q, M, and N are all functions of x.

Because both your equations are of that form. The homogenous equation for the first one is not too far off an Euler equation, so maybe that might help?

The first one obviously has a particular solution of y = \frac{x^4}{6} + \frac{1}{2}\, from assuming a quartic solution of y = ax^4 + bx^3 + cx^2 + dx + e. But solving the homogenous is tricky. I'd say try a series solution.
 
Last edited:
Hi morson, thanks for your reply. Yes, it does but only for a restricted class of such equations which are reducible to constant coefficient d.e.s (such as Euler's equidimensional equation). The general result is proved as a problem in the book:

Consider the general homogeneous equation

y'' + P(x)y + Q(x)y = 0

and change the independent variable from x to z = z(x) where z(x) is an unspecified function of x. Show that the equation can be transformed in this way to an equation with constant coefficients if and only if (Q' + 2PQ)/Q^{3/2} is constant, in which case z = \int \sqrt{Q(x)}dx will effect the desired result.

This is the only method I am aware of. In this particular case, the guessed solutions worked and so did the usual method thereafter. But no concrete methods for solving such equations have been developed so far. Of course I can solve them with the power series method, but I was wondering if there are other methods I do not know yet...

PS (To Moderator): I think I posted this in the wrong forums, can you please shift it to the Differential Equations forum if you think that's the right place for it.
 
Hi maverick280857,

One way of solving a second order non homogenous linear diff eqn would be by the method of variation of parameters.

Let's say that the diff eqn you need to solve is of the form,
\ddot{y} + a(x)\dot{y} + b(x)y = c(x)

First, consider the corresponding homogenous equation,
\ddot{y} + a(x)\dot{y} + b(x)y = 0

First, the solution to the homogenous equation will be of the form y_h(x) = c1y_1(x) + c2y_2(x)

Next, the trick in the variation of parameters method is to look for a particular solution of the form,
y_p(x) = u_1(x)y_1(x) + u_2(x)y_2(x)
such that,
\begin{cases} u_1^\prime y_1 + u_2^\prime y_2 = 0 \\ u_1^\prime y_1^\prime + u_2^\prime y_2^\prime = c(x) \end{cases }

(Why this? Substitute y_p back into the original eqn and check that it satisfies)

This seems to be what you've done in your solution you posted.

To find the solution to the homogenous eqn, you might have to "guess" it, or use the power series method. I can't think of any other way.
 
Last edited:
siddharth said:
This seems to be what you've done in your solution you posted.

Yup I already have :smile:

Fine, so there is no other reduction of form for these two equations I guess...
 
Back
Top