7.213 problem 1803

Internal problem ID [9382]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 6, non-linear second order
Problem number: 1803.
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.238 (sec). Leaf size: 304

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

Solution by Mathematica

Time used: 18.249 (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