Internal
problem
ID
[22060]
Book
:
Differential
Equations
By
Kaj
L.
Nielsen.
Second
edition
1966.
Barnes
and
nobel.
66-28306
Section
:
Examination
VII.
page
256
Problem
number
:
5
Date
solved
:
Thursday, October 02, 2025 at 08:23:17 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(y(t),t)+y(t)-diff(x(t),t)+x(t) = t, diff(y(t),t)-y(t)+diff(x(t),t)+x(t) = 0]; dsolve(ode);
ode={D[y[t],t]+y[t]-D[x[t],t]+x[t]==t,D[y[t],t]-y[t]-D[x[t],t]+x[t]==0 }; 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(-t + x(t) + y(t) - Derivative(x(t), t) + Derivative(y(t), t),0),Eq(x(t) - y(t) + Derivative(x(t), t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)