How to solve a second order diff eq?

  • Context: Undergrad 
  • Thread starter Thread starter Binaryburst
  • Start date Start date
  • Tags Tags
    Diff eq Second order
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
9 replies · 4K views
Binaryburst
Messages
24
Reaction score
0
If have this equation:

[itex]\frac {d^2x}{dt^2}=-\frac{x}{1+x^2}[/itex]

How do I solve it?
 
Physics news on Phys.org
Binaryburst said:
If have this equation:

[itex]\frac {d^2x}{dt^2}=-\frac{x}{1+x^2}[/itex]

How do I solve it?

How about numerical methods, like they are applied here?
(I do not believe there is a nice analytic solution.)
 
The solution to this equation should be:

[itex]x(t) = sin(t)[/itex]

I simply don't know how to get there ...

I have integrated but I get something like integ of 1/sqr(-ln(1+x^2)) dx?! :(
 
Binaryburst said:
The solution to this equation should be:

[itex]x(t) = sin(t)[/itex]
This would give ##x''=-x##, and ##1+x^2 \neq 1## (in general), so it is not a solution.

The first integral should give something like ln(1+x^2).
 
introduce a new variable
[itex]p=\frac{dx}{dt}[/itex]

by the chain rule we have:
[itex]\frac{d^2x}{dt^2}=\frac{dp(x(t))}{dx}=\frac{dp}{dx}\frac{dx}{dt}=\frac{dp}{dx}p[/itex]
This means that
[itex]pdp = \frac{-1}{1+x^2}dx[/itex]

integrate!

[itex]\int pdp = \int \frac{-1}{1+x^2}dx[/itex]
[itex]\frac{1}{2}p^2 = -\frac{1}{2}\ln(1+x^2)+C_1[/itex]

and because p is the derivative dx/dt, we get

[itex]\frac{dx}{\sqrt{-\ln(1+x^2)+C_1}} = 1[/itex]

integrate!

[itex]\int\frac{1}{\sqrt{\ln(1+x^2)+C_1}}dx = t + C_2[/itex]


Well, not a very nice solution because it's implicit.
 
Let us denote ##\dot x## to be the same as ##dx \over dt##.

Then:
$$\ddot x = - \frac{x}{1+x^2}$$
$$2 \ddot x \dot x = -\frac{1}{1+x^2} \cdot 2x \cdot \dot x$$
$$\dot x^2 = -\ln(1+x^2) + C$$

And there it ends! :cry:
No nice integration after this!