85.7.3 problem 1 (c)

Internal problem ID [22457]
Book : Applied Differential Equations. By Murray R. Spiegel. 3rd edition. 1980. Pearson. ISBN 978-0130400970
Section : Chapter 1. Differential equations in general. A Exercises at page 32
Problem number : 1 (c)
Date solved : Saturday, October 04, 2025 at 05:35:48 PM
CAS classification : [`y=_G(x,y')`]

\begin{align*} y^{\prime }&=\frac {1}{x^{2}+y^{2}} \end{align*}

With initial conditions

\begin{align*} y \left (0\right )&=0 \\ \end{align*}
Maple. Time used: 0.127 (sec). Leaf size: 44
ode:=diff(y(x),x) = 1/(x^2+y(x)^2); 
ic:=[y(0) = 0]; 
dsolve([ode,op(ic)],y(x), singsol=all);
 
\[ y = \operatorname {RootOf}\left (\operatorname {BesselJ}\left (-\frac {3}{4}, \frac {\textit {\_Z}^{2}}{2}\right ) c_1 \textit {\_Z} +\operatorname {BesselJ}\left (\frac {1}{4}, \frac {\textit {\_Z}^{2}}{2}\right ) c_1 x +\operatorname {BesselY}\left (-\frac {3}{4}, \frac {\textit {\_Z}^{2}}{2}\right ) \textit {\_Z} +\operatorname {BesselY}\left (\frac {1}{4}, \frac {\textit {\_Z}^{2}}{2}\right ) x \right ) \]
Mathematica
ode=D[y[x],{x,1}]==1/(x^2+y[x]^2); 
ic={y[0]==0}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(Derivative(y(x), x) - 1/(x**2 + y(x)**2),0) 
ics = {y(0): 0} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : The given ODE Derivative(y(x), x) - 1/(x**2 + y(x)**2) cannot be solved by the lie group method