Internal
problem
ID
[7796]
Book
:
Schaums
Outline
Differential
Equations,
4th
edition.
Bronson
and
Costa.
McGraw
Hill
2014
Section
:
Chapter
11.
THE
METHOD
OF
UNDETERMINED
COEFFICIENTS.
page
95
Problem
number
:
Problem
11.4
Date
solved
:
Tuesday, September 30, 2025 at 05:05:34 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(y(t),t),t)-6*diff(y(t),t)+25*y(t) = 2*sin(1/2*t)-cos(1/2*t); dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]-6*D[y[t],t]+25*y[t]==2*Sin[t/2]-Cos[t/2]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(25*y(t) - 2*sin(t/2) + cos(t/2) - 6*Derivative(y(t), t) + Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)