Internal
problem
ID
[18515]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
VII.
Linear
equations
of
order
higher
than
the
first.
section
56.
Problems
at
page
163
Problem
number
:
7
Date
solved
:
Monday, March 31, 2025 at 05:40:59 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(y(t),t),t)+4*diff(y(t),t)-y(t) = sin(t); dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]+4*D[y[t],t]-y[t]==Sin[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-y(t) - sin(t) + 4*Derivative(y(t), t) + Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)