Internal
problem
ID
[2493]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.4
separable
equations.
Excercises
page
24
Problem
number
:
5
Date
solved
:
Sunday, March 30, 2025 at 12:03:22 AM
CAS
classification
:
[_separable]
ode:=cos(y(t))*sin(t)*diff(y(t),t) = sin(y(t))*cos(t); dsolve(ode,y(t), singsol=all);
ode=Cos[y[t]]*Sin[t]*D[y[t],t]==Sin[y[t]]*Cos[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(sin(t)*cos(y(t))*Derivative(y(t), t) - sin(y(t))*cos(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)