Internal
problem
ID
[22015]
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
:
12
Date
solved
:
Sunday, October 12, 2025 at 05:52:18 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(y(t),t)+y(t)-diff(diff(x(t),t),t)+x(t) = exp(t), diff(y(t),t)-diff(x(t),t)+x(t) = exp(-t)]; dsolve(ode);
ode={D[y[t],t]+y[t]-D[x[t],{t,2}]+x[t]==Exp[t],D[y[t],t]-D[x[t],t]+x[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) + y(t) - exp(t) - Derivative(x(t), (t, 2)) + Derivative(y(t), t),0),Eq(x(t) - Derivative(x(t), t) + Derivative(y(t), t) - exp(-t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)