7.213 problem 1804 (book 6.213)

Internal problem ID [9382]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 6, non-linear second order
Problem number: 1804 (book 6.213).
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _missing_x]]

Solve \begin {gather*} \boxed {2 \left (c -y\right ) \left (b -y\right ) \left (-y+a \right ) y^{\prime \prime }+\left (\left (-y+a \right ) \left (b -y\right )+\left (c -y\right ) \left (-y+a \right )+\left (b -y\right ) \left (c -y\right )\right ) \left (y^{\prime }\right )^{2}-\mathit {a0} \left (c -y\right )^{2} \left (b -y\right )^{2} \left (-y+a \right )^{2}-\mathit {a1} \left (b -y\right )^{2} \left (c -y\right )^{2}-\mathit {a2} \left (c -y\right )^{2} \left (-y+a \right )^{2}-\mathit {a3} \left (b -y\right )^{2} \left (-y+a \right )^{2}=0} \end {gather*}

Solution by Maple

Time used: 0.219 (sec). Leaf size: 309

dsolve(2*(c-y(x))*(b-y(x))*(a-y(x))*diff(diff(y(x),x),x)+((a-y(x))*(b-y(x))+(c-y(x))*(a-y(x))+(b-y(x))*(c-y(x)))*diff(y(x),x)^2-a0*(c-y(x))^2*(b-y(x))^2*(a-y(x))^2-a1*(b-y(x))^2*(c-y(x))^2-a2*(c-y(x))^2*(a-y(x))^2-a3*(b-y(x))^2*(a-y(x))^2=0,y(x), singsol=all)
 

\begin{align*} \int _{}^{y \relax (x )}\frac {1}{\sqrt {-\mathit {a0} \,\textit {\_a}^{4}+\textit {\_a}^{3} a \mathit {a0} +\textit {\_a}^{3} \mathit {a0} b +\mathit {a0} \,\textit {\_a}^{3} c -\textit {\_a}^{2} a \mathit {a0} b -\textit {\_a}^{2} a \mathit {a0} c -\textit {\_a}^{2} \mathit {a0} b c +\textit {\_a} a \mathit {a0} b c +\textit {\_a}^{3} c_{1}-\textit {\_a}^{2} a c_{1}-\textit {\_a}^{2} b c_{1}-\textit {\_a}^{2} c c_{1}+\textit {\_a} a b c_{1}+\textit {\_a} a c c_{1}+\textit {\_a} b c c_{1}-a b c c_{1}+\textit {\_a}^{2} \mathit {a1} +\textit {\_a}^{2} \mathit {a2} +\textit {\_a}^{2} \mathit {a3} -\textit {\_a} a \mathit {a2} -\textit {\_a} a \mathit {a3} -\textit {\_a} \mathit {a1} b -\textit {\_a} \mathit {a1} c -\textit {\_a} \mathit {a2} c -\textit {\_a} \mathit {a3} b +a \mathit {a2} c +a \mathit {a3} b +\mathit {a1} c b}}d \textit {\_a} -x -c_{2} = 0 \\ \int _{}^{y \relax (x )}-\frac {1}{\sqrt {-\mathit {a0} \,\textit {\_a}^{4}+\left (\mathit {a0} c +\left (a +b \right ) \mathit {a0} +c_{1}\right ) \textit {\_a}^{3}+\left (\left (\left (-a -b \right ) \mathit {a0} -c_{1}\right ) c -\mathit {a0} a b -c_{1} a -c_{1} b +\mathit {a1} +\mathit {a2} +\mathit {a3} \right ) \textit {\_a}^{2}+\left (\left (\mathit {a0} a b +c_{1} a +c_{1} b -\mathit {a1} -\mathit {a2} \right ) c +\left (c_{1} a -\mathit {a1} -\mathit {a3} \right ) b -a \left (\mathit {a2} +\mathit {a3} \right )\right ) \textit {\_a} +\left (\left (-c_{1} a +\mathit {a1} \right ) b +a \mathit {a2} \right ) c +a \mathit {a3} b}}d \textit {\_a} -x -c_{2} = 0 \\ \end{align*}

Solution by Mathematica

Time used: 17.381 (sec). Leaf size: 10387

DSolve[-(a3*(a - y[x])^2*(b - y[x])^2) - a2*(a - y[x])^2*(c - y[x])^2 - a1*(b - y[x])^2*(c - y[x])^2 - a0*(a - y[x])^2*(b - y[x])^2*(c - y[x])^2 + ((a - y[x])*(b - y[x]) + (a - y[x])*(c - y[x]) + (b - y[x])*(c - y[x]))*y'[x]^2 + 2*(a - y[x])*(b - y[x])*(c - y[x])*y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

Too large to display