7.216 problem 1806 (book 6.216)

Internal problem ID [10128]
Internal file name [OUTPUT/9075_Monday_June_06_2022_06_22_20_AM_85994494/index.tex]

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

The type(s) of ODE detected by this program : "unknown"

Maple gives the following as the ode type

unknown

Unable to solve or complete the solution.

\[ \boxed {-2 x y \left (1-x \right ) \left (1-y\right ) \left (x -y\right ) y^{\prime \prime }+x \left (1-x \right ) \left (x -2 x y-2 y+3 y^{2}\right ) {y^{\prime }}^{2}+2 y \left (1-y\right ) \left (x^{2}+y-2 x y\right ) y^{\prime }-y^{2} \left (1-y\right )^{2}-f \left (y \left (y-1\right ) \left (y-x \right )\right )^{\frac {3}{2}}=0} \]

Maple trace

`Methods for second order ODEs: 
--- Trying classification methods --- 
trying 2nd order WeierstrassP 
trying 2nd order JacobiSN 
differential order: 2; trying a linearization to 3rd order 
trying 2nd order ODE linearizable_by_differentiation 
trying 2nd order, 2 integrating factors of the form mu(x,y) 
trying a quadrature 
checking if the LODE has constant coefficients 
checking if the LODE is of Euler type 
trying a symmetry of the form [xi=0, eta=F(x)] 
checking if the LODE is missing y 
-> Trying a Liouvillian solution using Kovacics algorithm 
<- No Liouvillian solutions exists 
-> Trying a solution in terms of special functions: 
   -> Bessel 
   -> elliptic 
   <- elliptic successful 
<- special function solution successful 
Unable to compute first integrals with the two integrating factors found. This ODE however admits an 8-D symmetry group; try recover 
differential order: 2; checking the 8 symmetries case 
-> Calling odsolve with the ODE`, diff(y(x), x) = (1/2)*y(x)^2+(1/2)*(2*f*x^3*y-7*f*x^2*y^2+8*y^3*f*x-3*f*y^4-f*x^3+4*f*x^2*y-5*f*x* 
   Methods for first order ODEs: 
   --- Trying classification methods --- 
   trying a quadrature 
   trying 1st order linear 
   trying Bernoulli 
   trying separable 
   trying inverse linear 
   trying homogeneous types: 
   trying Chini 
   differential order: 1; looking for linear symmetries 
   trying exact 
   Looking for potential symmetries 
   trying Riccati 
   trying Riccati sub-methods: 
      trying Riccati to 2nd Order 
      -> Calling odsolve with the ODE`, diff(diff(u(x), x), x) = -(1/4)*(x^2-x+1)*u(x)/(x^2*(x^2-2*x+1)), u(x)`         *** Sublevel 
         Methods for second order ODEs: 
         --- Trying classification methods --- 
         trying a quadrature 
         checking if the LODE has constant coefficients 
         checking if the LODE is of Euler type 
         trying a symmetry of the form [xi=0, eta=F(x)] 
         checking if the LODE is missing y 
         -> Trying a Liouvillian solution using Kovacics algorithm 
         <- No Liouvillian solutions exists 
         -> Trying a solution in terms of special functions: 
            -> Bessel 
            -> elliptic 
            <- elliptic successful 
         <- special function solution successful 
      <- Riccati to 2nd Order successful 
<- 8 symmetries successful 
<- 2nd order, 2 integrating factors of the form mu(x,y) successful`
 

Solution by Maple

dsolve(-2*x*y(x)*(1-x)*(1-y(x))*(x-y(x))*diff(diff(y(x),x),x)+x*(1-x)*(x-2*x*y(x)-2*y(x)+3*y(x)^2)*diff(y(x),x)^2+2*y(x)*(1-y(x))*(x^2+y(x)-2*x*y(x))*diff(y(x),x)-y(x)^2*(1-y(x))^2-f*(y(x)*(-1+y(x))*(y(x)-x))^(3/2)=0,y(x), singsol=all)
 

\[ \text {No solution found} \]

Solution by Mathematica

Time used: 0.0 (sec). Leaf size: 0

DSolve[-((1 - y[x])^2*y[x]^2) - f[x]*((-1 + y[x])*y[x]*(-x + y[x]))^(3/2) + 2*(1 - y[x])*y[x]*(x^2 + y[x] - 2*x*y[x])*y'[x] + (1 - x)*x*(x - 2*y[x] - 2*x*y[x] + 3*y[x]^2)*y'[x]^2 - 2*(1 - x)*x*(1 - y[x])*(x - y[x])*y[x]*y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

Not solved