60.1.66 problem 67

Internal problem ID [10080]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 1, linear first order
Problem number : 67
Date solved : Sunday, March 30, 2025 at 03:12:39 PM
CAS classification : [_separable]

\begin{align*} y^{\prime }-\frac {\sqrt {1-y^{4}}}{\sqrt {-x^{4}+1}}&=0 \end{align*}

Maple. Time used: 0.001 (sec). Leaf size: 32
ode:=diff(y(x),x)-(1-y(x)^4)^(1/2)/(-x^4+1)^(1/2) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ \int \frac {1}{\sqrt {-x^{4}+1}}d x -\int _{}^{y}\frac {1}{\sqrt {-\textit {\_a}^{4}+1}}d \textit {\_a} +c_1 = 0 \]
Mathematica. Time used: 0.292 (sec). Leaf size: 38
ode=D[y[x],x] - Sqrt[1-y[x]^4]/Sqrt[1-x^4]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)\to \text {sn}(c_1+\operatorname {EllipticF}(\arcsin (x),-1)|-1) \\ y(x)\to -1 \\ y(x)\to -i \\ y(x)\to i \\ y(x)\to 1 \\ \end{align*}
Sympy. Time used: 0.650 (sec). Leaf size: 65
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(Derivative(y(x), x) - sqrt(1 - y(x)**4)/sqrt(1 - x**4),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ \frac {y{\left (x \right )} \Gamma \left (\frac {1}{4}\right ) {{}_{2}F_{1}\left (\begin {matrix} \frac {1}{4}, \frac {1}{2} \\ \frac {5}{4} \end {matrix}\middle | {e^{2 i \pi } y^{4}{\left (x \right )}} \right )}}{4 \Gamma \left (\frac {5}{4}\right )} = C_{1} + \frac {x \Gamma \left (\frac {1}{4}\right ) {{}_{2}F_{1}\left (\begin {matrix} \frac {1}{4}, \frac {1}{2} \\ \frac {5}{4} \end {matrix}\middle | {x^{4} e^{2 i \pi }} \right )}}{4 \Gamma \left (\frac {5}{4}\right )} \]