Internal
problem
ID
[2971]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
10,
page
41
Problem
number
:
14
Date
solved
:
Tuesday, March 04, 2025 at 03:36:31 PM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x)*G(y),0]`]]
ode:=cos(y(x))^2+(x-tan(y(x)))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=Cos[y[x]]^2+(x-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((x - tan(y(x)))*Derivative(y(x), x) + cos(y(x))**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)