Internal
problem
ID
[5867]
Book
:
Ordinary
Differential
Equations,
By
Tenenbaum
and
Pollard.
Dover,
NY
1963
Section
:
Chapter
2.
Special
types
of
differential
equations
of
the
first
kind.
Lesson
12,
Miscellaneous
Methods
Problem
number
:
Exercise
12.2,
page
103
Date
solved
:
Tuesday, March 04, 2025 at 11:49:33 PM
CAS
classification
:
[`y=_G(x,y')`]
ode:=cos(y(x))*diff(y(x),x)+sin(y(x)) = x^2; dsolve(ode,y(x), singsol=all);
ode=Cos[y[x]]*D[y[x],x]+Sin[y[x]]==x^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2 + sin(y(x)) + cos(y(x))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)