Solving a Nonlinear Differential Equation: y'' + (y')^2 = 1

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
10 replies · 3K views
Ed Aboud
Messages
200
Reaction score
0

Homework Statement



Solve

[tex]y \frac{d^2y}{dt^2} + (\frac{dy}{dt})^2 = 1[/tex]

Homework Equations





The Attempt at a Solution



[tex]\frac{dy}{dt} = v[/tex]

[tex]\frac{d^2y}{dt^2} = v \frac{dv}{dy}[/tex]

[tex]yv \frac{dv}{dy} + v^2 =1[/tex]

[tex]\frac{dv}{dy} + \frac{v}{y} = \frac{1}{vy}[/tex]

[tex]I(y) = exp ( \int \frac{1}{y} dy)[/tex]

[tex]I(y) = y[/tex]

[tex]y \frac{dv}{dy} + v = \frac{1}{v}[/tex]

[tex]\frac{d}{dy} (vy) = \frac{1}{v}[/tex]

[tex]y= \frac{ln(v)}{v} + \frac{C}{v}[/tex]

Thanks.
 
Physics news on Phys.org
Hi Ed,
Ed Aboud said:
[tex]\frac{d}{dy} (vy) = \frac{1}{v}[/tex]

[tex]y= \frac{ln(v)}{v} + \frac{C}{v}[/tex]
This is where the error shows up: you are integrating one side with respect to y and the other with respect to v. Notice that your fourth line
[tex]\frac{dv}{dy} + \frac{v}{y} = \frac{1}{vy}[/tex]
is not of the form you would normally apply the integrating factor method you have used: the right-hand side should be a function of y only.

All is not lost, however. From your third line
[tex]yv \frac{dv}{dy} + v^2 =1[/tex]
you can instead use the method of separation of variables.
 
Ok so here's my new attempt :

[tex]y v \frac{dv}{dy} + v^2 = 1[/tex]


[tex]y \frac{dv}{dy} + v = \frac{1}{v}[/tex]


[tex]y \frac{dv}{dy} = \frac{1 - v^2}{v}[/tex]


[tex]\int \frac{v}{1 - v^2} dv = \int \frac{1}{y} dy[/tex]

[tex]ln ( \frac{1}{ \sqrt{1 - v^2} }) = ln (y) + C[/tex]

[tex]y = exp(ln(\frac{1}{\sqrt{1 - v^2}}) + C )[/tex]

[tex]y = \frac{1}{\sqrt{1 - v^2}} . e^C[/tex]

[tex]y \sqrt{1 - v^2} = e^C[/tex]

I don't think I am getting anywhere with it.

Thanks for the help.
 
Sorry I'm not sure where you got
[tex] <br /> \frac{d^2 (y^2/2)}{dt^2} = 1<br /> [/tex]

from.
 
Ed Aboud said:
Sorry I'm not sure where you got
[tex] <br /> \frac{d^2 (y^2/2)}{dt^2} = 1<br /> [/tex]

from.

I differentiated y^2/2 twice with respect to t. (y^2/2)'=y*y'. (y*y')'=y*y''+(y')^2. Your equation is y*y''+(y')^2=1.
 
I see it now, thanks very much for your help!
 
Sorry for double-posting but now I'm having doubts if I'm doing the next integral right.

[tex]\frac{d^2}{dt^2} (\frac{1}{2} y^2) = 1[/tex]

[tex]\alpha = \frac{1}{2} y^2[/tex]

[tex]\frac{d \alpha}{dt} = v[/tex]

[tex]\frac{dv}{dt} = 1[/tex]

[tex]v = t + C[/tex]

[tex]\frac{d \alpha}{dt} = t + C[/tex]

[tex]\alpha = \frac{1}{2} t^2 + Ct[/tex]

[tex]y^2 = t^2 + Ct[/tex]

[tex]y = \sqrt{t^2 + Ct}[/tex]

Correct?
 
Just integrate the first equation twice. The first time you get d(y^2/2)/dt=t+C. The second time you get y^2/2=t^2/2+Ct+D. So y^2=t^2+Ct+D. (I didn't multiply C and D by 2 since they are just constants anyway). So your answer is right. But you should have picked up another constant when you integrated dalpha/dt.
 
Ed Aboud said:
Ok so here's my new attempt :

[tex]y v \frac{dv}{dy} + v^2 = 1[/tex][tex]y \frac{dv}{dy} + v = \frac{1}{v}[/tex][tex]y \frac{dv}{dy} = \frac{1 - v^2}{v}[/tex][tex]\int \frac{v}{1 - v^2} dv = \int \frac{1}{y} dy[/tex]

[tex]ln ( \frac{1}{ \sqrt{1 - v^2} }) = ln (y) + C[/tex]

[tex]y = exp(ln(\frac{1}{\sqrt{1 - v^2}}) + C )[/tex]

[tex]y = \frac{1}{\sqrt{1 - v^2}} . e^C[/tex]

[tex]y \sqrt{1 - v^2} = e^C[/tex]

I don't think I am getting anywhere with it.

Thanks for the help.
This wasn't wrong (although technically the C is -C). You can solve your last equation for v, which is dy/dt, and then separate variables again to finish the job (taking care to remember there are two square roots). Just a general note (Dick will go down the other track with you), you should expect two arbitrary constants in your solution.
 
Cool, got it now.

Thanks again!