Need analytical solution to this ODE

functionsordinary differential equationsproblem solvingsingular solution

I have two ordinary differential equations that I'm trying to solve analytically, if a solution exist. I'm not interested in numerical solutions. Here they are:
\begin{align}
\frac{\ddot{a}}{a} – \frac{\dot{a}^2}{a^2} = -\, a, \tag{A} \\[2ex]
\frac{\ddot{b}}{b} – 2\frac{\dot{b}^2}{b^2} = -\, b^3. \tag{B}
\end{align}

The dot represents the derivative relative to a real variable $\theta \ge 0$, and $a$, $b$ are real and positive unknown functions satisfying (A) and (B):
\begin{align}\tag{1}
&a(\theta) \ge 0, &&b(\theta) \ge 0.
\end{align}

The initial conditions are arbitrary positive constants:
\begin{align}\tag{2}
&a(1) =1, &&b(1) = 1, &&\dot{a}(1) \ge 0, &&\dot{b}(1) \ge 0.
\end{align}

I'm not even sure that the equations (A) and (B) are individually consistent. I need to find an analytical solution and I currently don't see how to find one. The negative sign on the right hand side of (A) and (B) give me some troubles. Any help would be greatly appreciated. Anyone can find a solution to (A) or (B)?

Is there a way to show that these equations admit a solution?

Best Answer

$$\frac{\ddot{a}}{a} - \frac{\dot{a}^2}{a^2} = -\, a, \tag{A} \\[2ex]$$ $$\left (\frac{a'}{a} \right)'=-a$$ $$\frac {a'}{a}\left (\frac{a'}{a} \right)'=-a'$$ $$\frac {a'}{a}d\left (\frac{a'}{a} \right)=-da$$ Integrate to reduce the order of the DE. $$\left(\frac {a'}{a} \right)^2=-2a+C_1$$ This may not be easily integrable. (elliptic integral)


$$\frac{\ddot{b}}{b} - 2\frac{\dot{b}^2}{b^2} = -\, b^3. \tag{B}$$ $$b^2(b'')-(b^2)'b'=-b^6$$ $$\left ( \frac {b'}{b^2} \right)'=-b^2$$ $$\frac {b'}{b^2}\left ( \frac {b'}{b^2} \right)'=-b'$$ You can reduce the oder but then it won't be integrable again easily.

Related Question