90.6.3 problem 3

Internal problem ID [25147]
Book : Ordinary Differential Equations. By William Adkins and Mark G Davidson. Springer. NY. 2010. ISBN 978-1-4614-3617-1
Section : Chapter 1. First order differential equations. Exercises at page 83
Problem number : 3
Date solved : Thursday, October 02, 2025 at 11:54:48 PM
CAS classification : [_rational]

\begin{align*} 2 t^{2}-y+\left (t +y^{2}\right ) y^{\prime }&=0 \end{align*}
Maple
ode:=2*t^2-y(t)+(t+y(t)^2)*diff(y(t),t) = 0; 
dsolve(ode,y(t), singsol=all);
 
\[ \text {No solution found} \]
Mathematica
ode=(2*t^2-y[t])+(t+y[t]^2)*D[y[t],{t,1}] == 0; 
ic={}; 
DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
t = symbols("t") 
y = Function("y") 
ode = Eq(2*t**2 + (t + y(t)**2)*Derivative(y(t), t) - y(t),0) 
ics = {} 
dsolve(ode,func=y(t),ics=ics)
 
Timed Out