Internal
problem
ID
[2601]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
2.
Second
order
differential
equations.
Section
2.5.
Method
of
judicious
guessing.
Excercises
page
164
Problem
number
:
8
Date
solved
:
Tuesday, March 04, 2025 at 02:29:37 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(y(t),t),t)-6*diff(y(t),t)+9*y(t) = (3*t^7-5*t^4)*exp(3*t); dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]-6*D[y[t],t]+9*y[t]==(3*t^7-5*t^4)*Exp[3*t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq((-3*t**7 + 5*t**4)*exp(3*t) + 9*y(t) - 6*Derivative(y(t), t) + Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)