What is the solution to a 3rd order nonlinear ODE?

  • Thread starter Thread starter Max0526
  • Start date Start date
  • Tags Tags
    Nonlinear Ode
Max0526
Messages
41
Reaction score
0
Hi, everybody.
I have an ODE:
<br /> y&#039;&#039;&#039;+2y&#039;&#039;y-3y&#039;^2=0<br />
I know that it has an analytic solution, but I cannot get it (yet).
Can anybody help me?
(I don't need a full explanation how to solve it, just some hints or just the solution with 3 arbitrary constants).
Thanks beforehand,
Max.
 
Physics news on Phys.org
Max0526 said:
Hi, everybody.
I have an ODE:
<br /> y&#039;&#039;&#039;+2y&#039;&#039;y-3y&#039;^2=0<br />
I know that it has an analytic solution, but I cannot get it (yet).
Can anybody help me?
(I don't need a full explanation how to solve it, just some hints or just the solution with 3 arbitrary constants).
Thanks beforehand,
Max.


Three constants? That would be the case if the ODE was linear.

There is another problem here. The ODE is autonomous, and all functions of the form y=const. are solutions, plus the solutions cannot meet each other. So this ODE has only trivial solutions.
 
How about:
y = \frac{6}{x+a}
 
How about ...you re right?
I mistakingly assumed that every solution has to meet the y axis.
 
Max0526 said:
Hi, everybody.
I have an ODE:
<br /> y&#039;&#039;&#039;+2y&#039;&#039;y-3y&#039;^2=0<br />
I know that it has an analytic solution, but I cannot get it (yet).
Can anybody help me?
(I don't need a full explanation how to solve it, just some hints or just the solution with 3 arbitrary constants).
Thanks beforehand,
Max.

You are right, this ODE has an analytic general solution, but it is not so simple and includes hypergeom functions and so on. To see the solution in implicit form use Maple with

ode:=diff(y(x),x,x,x)+2*diff(y(x),x,x)*y(x)-3*diff(y(x),x)^2=0;

ans:=dsolve(ode);
 
Thread 'Direction Fields and Isoclines'
I sketched the isoclines for $$ m=-1,0,1,2 $$. Since both $$ \frac{dy}{dx} $$ and $$ D_{y} \frac{dy}{dx} $$ are continuous on the square region R defined by $$ -4\leq x \leq 4, -4 \leq y \leq 4 $$ the existence and uniqueness theorem guarantees that if we pick a point in the interior that lies on an isocline there will be a unique differentiable function (solution) passing through that point. I understand that a solution exists but I unsure how to actually sketch it. For example, consider a...
Back
Top