Internal
problem
ID
[6787]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
21.
System
of
simultaneous
linear
equations.
Supplemetary
problems.
Page
163
Problem
number
:
10
Date
solved
:
Sunday, March 30, 2025 at 11:22:50 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t)-diff(y(t),t)+y(t) = -exp(t), x(t)+diff(y(t),t)-y(t) = exp(2*t)]; dsolve(ode);
ode={D[x[t],t]-D[y[t],t]+y[t]==-Exp[t],x[t]+D[y[t],t]-y[t]==Exp[2*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(y(t) + exp(t) + Derivative(x(t), t) - Derivative(y(t), t),0),Eq(x(t) - y(t) - exp(2*t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)