Internal
problem
ID
[13254]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
section
2.3
(Linear
equations).
Exercises
page
56
Problem
number
:
12
Date
solved
:
Monday, March 31, 2025 at 07:43:39 AM
CAS
classification
:
[_linear]
ode:=cos(t)*diff(r(t),t)+r(t)*sin(t)-cos(t)^4 = 0; dsolve(ode,r(t), singsol=all);
ode=Cos[t]*D[r[t],t]+(r[t]*Sin[t]-Cos[t]^4)==0; ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") r = Function("r") ode = Eq(r(t)*sin(t) - cos(t)**4 + cos(t)*Derivative(r(t), t),0) ics = {} dsolve(ode,func=r(t),ics=ics)