Internal
problem
ID
[2985]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
11,
page
45
Problem
number
:
4
Date
solved
:
Sunday, March 30, 2025 at 01:03:32 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=sin(theta(t))*diff(theta(t),t)+cos(theta(t))-t*exp(-t) = 0; dsolve(ode,theta(t), singsol=all);
ode=Sin[\[Theta][t]]*D [ \[Theta][t] , t ]+(Cos[\[Theta][t]]-t*Exp[-t] )==0; ic={}; DSolve[{ode,ic},\[Theta][t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") theta = Function("theta") ode = Eq(-t*exp(-t) + sin(theta(t))*Derivative(theta(t), t) + cos(theta(t)),0) ics = {} dsolve(ode,func=theta(t),ics=ics)