Internal
problem
ID
[8795]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
82
Date
solved
:
Wednesday, March 05, 2025 at 06:49:27 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(z(t),t),t)+3*diff(z(t),t)+2*z(t) = 24*exp(-3*t)-24*exp(-4*t); dsolve(ode,z(t), singsol=all);
ode=D[z[t],{t,2}]+3*D[z[t],t]+2*z[t]==24*(Exp[-3*t]-Exp[-4*t]); ic={}; DSolve[{ode,ic},z[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") z = Function("z") ode = Eq(2*z(t) + 3*Derivative(z(t), t) + Derivative(z(t), (t, 2)) - 24*exp(-3*t) + 24*exp(-4*t),0) ics = {} dsolve(ode,func=z(t),ics=ics)