Internal
problem
ID
[2322]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.4.
Page
24
Problem
number
:
5
Date
solved
:
Tuesday, September 30, 2025 at 05:26:42 AM
CAS
classification
:
[_separable]
ode:=cos(y(t))*sin(t)*diff(y(t),t) = cos(t)*sin(y(t)); dsolve(ode,y(t), singsol=all);
ode=Cos[y[t]]*Sin[t]*D[y[t],t] == Cos[t]*Sin[y[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)