Internal
problem
ID
[1101]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Section
2.1.
Page
40
Problem
number
:
4
Date
solved
:
Saturday, March 29, 2025 at 10:38:57 PM
CAS
classification
:
[_linear]
ode:=y(t)/t+diff(y(t),t) = 3*cos(2*t); dsolve(ode,y(t), singsol=all);
ode=y[t]/t+D[y[t],t] == 3*Cos[2*t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-3*cos(2*t) + Derivative(y(t), t) + y(t)/t,0) ics = {} dsolve(ode,func=y(t),ics=ics)