Internal
problem
ID
[16088]
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
:
23
Date
solved
:
Monday, March 31, 2025 at 02:41:26 PM
CAS
classification
:
[_linear]
ode:=t*diff(r(t),t)+r(t) = t*cos(t); dsolve(ode,r(t), singsol=all);
ode=t*D[r[t],t]+r[t]==t*Cos[t]; ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") r = Function("r") ode = Eq(-t*cos(t) + t*Derivative(r(t), t) + r(t),0) ics = {} dsolve(ode,func=r(t),ics=ics)