Internal
problem
ID
[16098]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Review
exercises,
page
80
Problem
number
:
33
Date
solved
:
Monday, March 31, 2025 at 02:43:01 PM
CAS
classification
:
[_exact]
With initial conditions
ode:=sin(y(t))-y(t)*cos(t)+(t*cos(y(t))-sin(t))*diff(y(t),t) = 0; ic:=y(Pi) = 0; dsolve([ode,ic],y(t), singsol=all);
ode=(Sin[y[t]]-y[t]*Cos[t])+(t*Cos[y[t]]-Sin[t])*D[y[t],t]==0; ic={y[Pi]==0}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq((t*cos(y(t)) - sin(t))*Derivative(y(t), t) - y(t)*cos(t) + sin(y(t)),0) ics = {y(pi): 0} dsolve(ode,func=y(t),ics=ics)
Timed Out