Internal
problem
ID
[16246]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
4.
Higher
Order
Equations.
Exercises
4.4,
page
163
Problem
number
:
18
Date
solved
:
Thursday, March 13, 2025 at 08:07:08 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(y(t),t),t)-25*y(t) = 1/(1-exp(5*t)); dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]-25*y[t]==(1-Exp[5*t])^(-1); ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-25*y(t) + Derivative(y(t), (t, 2)) - 1/(1 - exp(5*t)),0) ics = {} dsolve(ode,func=y(t),ics=ics)