Why is Mathematica struggling to solve this ODE with a known analytic solution?

  • Context: Mathematica 
  • Thread starter Thread starter member 428835
  • Start date Start date
  • Tags Tags
    Mathematica
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
4 replies · 2K views
member 428835
Hi PF!

I am wondering if any of you can explain why Mathematica won't solve this ODE? I know an analytic solution exists (it's quadratic). Any help is greatly appreciated! $f0[x]$ is the name of the function.

Code:
a = -1/5;
DSolve[{-((2 a f0[x])/(1 + a)) + x f0'[x] + 
    2 (f0'[x])^2 + f0[x] f0''[x] == 0, 
  f0[1] == 0, f0'[1] == -1/2}, f0[x], x]
 
Physics news on Phys.org
Some hints to improve your post.
Give us the exact differential equation in LaTeX. having to "translate" hardly readable mathematica code doesn't help getting answers.
You say you know an analytic solution exists, do you know the form as well?

More on topic, have you tried NDSolve to see if mathematica can work with the DE and gives a reasonable result?
 
$$f f''+2f'^2+x f'+\frac{1}{2}f = 0$$ where ##f## is a function of ##x## subject to ##f(1)=0## and ##f'(1)=-1/2##. The analytic solution is ##f=(1-x^2)/2##.

I have tried NDSolve and it works great, provided I perturb the boundary condition as ##f(1)=0.00001##.

Any ideas why it can't figure out the solution?
 
So I've been looking at this for a bit.

First I would get rid of the factor of ##f## from the second derivative term.
From that I would be led to believe you could consider ##g = f^\prime/\sqrt{f}## as a new variable.

##g^\prime = \frac{f^{\prime\prime}}{\sqrt{f}} - \frac{f^\prime}{f}##
Then ##f^{\prime\prime} = \left(g^\prime+\frac{f^\prime}{f}\right)\sqrt{f}##
So we can rewrite your DE as

##\sqrt{f}\left(g^\prime + g\right) + 2 \left(g^\prime\right)^2+xg+\frac{1}{2} = 0##

That's where I got stuck, maybe this gives you some ideas.
I think the key is rewriting the equation such that mathematica recognizes it.
Also wolfram alpha gave me a solution (for different initial values) although no analytical expression.
Since wolfram alpha uses mathematica in the back this is promising.
 
  • Like
Likes   Reactions: member 428835
Are u sure the solution of that differential equation is really [itex]f=(1-x^2)/2[/itex]? I didn't get it because the initial condition of this solution is not same as you mentioned and actually it is [itex]f'(1)=-1[/itex].

I think the factor [itex]1/2[/itex] is missing. However, still I can't get the solution same as you. That's interesting.