Internal
problem
ID
[597]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
5.
Linear
systems
of
differential
equations.
Section
5.2
(Applications).
Problems
at
page
345
Problem
number
:
11
Date
solved
:
Tuesday, September 30, 2025 at 04:01:46 AM
CAS
classification
:
system_of_ODEs
ode:=[-diff(x(t),t)+2*diff(y(t),t) = x(t)+3*y(t)+exp(t), 3*diff(x(t),t)-4*diff(y(t),t) = x(t)-15*y(t)+exp(-t)]; dsolve(ode);
ode={-D[x[t],t]+2*D[y[t],t]==x[t]+3*y[t]+Exp[t],3*D[x[t],t]-4*D[y[t],t]==x[t]-15*y[t]+Exp[-t]}; ic={}; DSolve[{ode,ic},{x[t],y[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") y = Function("y") ode=[Eq(-x(t) - 3*y(t) - exp(t) - Derivative(x(t), t) + 2*Derivative(y(t), t),0),Eq(-x(t) + 15*y(t) + 3*Derivative(x(t), t) - 4*Derivative(y(t), t) - exp(-t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)