Internal
problem
ID
[14657]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
Section
2.4.
Special
integrating
factors
and
transformations.
Exercises
page
67
Problem
number
:
2
Date
solved
:
Thursday, October 02, 2025 at 09:48:52 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(x)]`]]
ode:=2*x+tan(y(x))+(x-x^2*tan(y(x)))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(2*x+Tan[y[x]])+(x-x^2*Tan[y[x]])*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(2*x + (-x**2*tan(y(x)) + x)*Derivative(y(x), x) + tan(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)