Internal
problem
ID
[2997]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
11,
page
45
Problem
number
:
16
Date
solved
:
Sunday, March 30, 2025 at 01:04:58 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=(x*tan(y(x))^2+x)*diff(y(x),x) = 2*x^2+tan(y(x)); dsolve(ode,y(x), singsol=all);
ode=(x*Tan[y[x]]^2+x)*D[y[x],x]==(2*x^2+Tan[y[x]]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*x**2 + (x*tan(y(x))**2 + x)*Derivative(y(x), x) - tan(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (2*x**2 + tan(y(x)))*cos(y(x))**2/x cannot be solved by the factorable group method