Internal
problem
ID
[7785]
Book
:
Engineering
Mathematics.
By
K.
A.
Stroud.
5th
edition.
Industrial
press
Inc.
NY.
2001
Section
:
Program
25.
Second
order
differential
equations.
Further
problems
25.
page
1094
Problem
number
:
13
Date
solved
:
Tuesday, September 30, 2025 at 05:05:25 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(y(t),t),t)+4*diff(y(t),t)+5*y(t) = 6*sin(t); dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]+4*D[y[t],t]+5*y[t]==6*Sin[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(5*y(t) - 6*sin(t) + 4*Derivative(y(t), t) + Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)