Internal
problem
ID
[22009]
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(1)
Date
solved
:
Thursday, October 02, 2025 at 08:21:38 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t)+x(t)+diff(y(t),t)+y(t) = 0, diff(x(t),t)-diff(y(t),t)-y(t) = t]; dsolve(ode);
ode={D[x[t],t]+x[t]+D[y[t],t]+y[t]==0,D[x[t],t]-D[y[t],t]-y[t]==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) + Derivative(x(t), t) + Derivative(y(t), t),0),Eq(-t - y(t) + Derivative(x(t), t) - Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)