Second order nonlinear ODE. How to begin solving it?

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
2 replies · 2K views
2sin54
Messages
109
Reaction score
1

Homework Statement


This is not the exact problem that I want to solve but I will use this as a guidance tool:
##y'' - (y')^2 + y^3 = 0##
where y is the function of x

2. The attempt at a solution

I tried doing a substitution ##u(x) = y'(x)## which leads to
##u' - u^2 + y^3 = 0## where both u and y are functions of x so this does not work.

I tried doing a substitution ##u(y(x)) = y'(x)## which leads to
##u_y'y' - u^2 + y^3 = 0## here I have the derivative of u with respect to y and the derivative of y w. r. t. x which I never really encountered in solving these equations (maybe it is the right way and I should somehow proceed?).

Tried substitutions with ##(y')^2## which did not get me far.

Methods like variation of parameters cannot be applied here since there's no independent variable function (at least to the original dif. equation).

Any tips? For the original problem the initial conditions are given but I suppose they are not necessary to understand the method of approaching these kind of problems?
 
Physics news on Phys.org
The fusion of your ideas considering y as independent variable and substituting u = (y')2 will certainly work.
Setting y as independent variable,
##y'' = \frac {dy'}{dy} \frac {dy}{dx}=0.5 \frac {d(y')^2}{dx}
##

Substituting u=(y')^2:

##0.5 \frac {du}{dx}-u+y^3=0##

You got a first-order linear equation for u, which can be solved by the integrating factor method, for example. Knowing u(y), dy/dx=sqrt(u(y)). You need to integrate, but it is not sure the integral can be obtained in terms of elementary functions.

ehild
 
Thank you for the help. I now recall getting the same integrating factor once but I abandoned the solution. I get confused when there is no answer in elementary functions which is the case here.