Internal
problem
ID
[691]
Book
:
Differential
equations
and
linear
algebra,
3rd
ed.,
Edwards
and
Penney
Section
:
Section
1.4.
Separable
equations.
Page
43
Problem
number
:
16
Date
solved
:
Tuesday, September 30, 2025 at 04:06:11 AM
CAS
classification
:
[_separable]
ode:=(x^2+1)*tan(y(x))*diff(y(x),x) = x; dsolve(ode,y(x), singsol=all);
ode=(x^2+1)*Tan[y[x]]*D[y[x],x] == x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x + (x**2 + 1)*tan(y(x))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)