Internal
problem
ID
[22011]
Book
:
Differential
Equations
By
Kaj
L.
Nielsen.
Second
edition
1966.
Barnes
and
nobel.
66-28306
Section
:
Chapter
IX.
System
of
equations.
Ex.
XVII
at
page
154
Problem
number
:
A(3)
Date
solved
:
Sunday, October 12, 2025 at 05:52:18 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(diff(x(t),t),t)-x(t)+y(t) = exp(t), diff(x(t),t)+x(t)-diff(y(t),t)-y(t) = 3*exp(t)]; dsolve(ode);
ode={D[y[t],{t,2}]-x[t]+y[t]==Exp[t],D[x[t],t]+x[t]-D[y[t],t]-y[t]==3*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) + y(t) - exp(t) + Derivative(y(t), (t, 2)),0),Eq(x(t) - y(t) - 3*exp(t) + Derivative(x(t), t) - Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)