Internal
problem
ID
[6790]
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
:
13
Date
solved
:
Sunday, March 30, 2025 at 11:22:55 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t)-x(t)+diff(y(t),t)+3*y(t) = exp(-t)-1, diff(x(t),t)+2*x(t)+diff(y(t),t)+3*y(t) = 1+exp(2*t)]; dsolve(ode);
ode={D[x[t],t]-x[t]+D[y[t],t]+3*y[t]==Exp[-t]-1,D[x[t],t]+2*x[t]+D[y[t],t]+3*y[t]==Exp[2*t]+1}; 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) + 3*y(t) + Derivative(x(t), t) + Derivative(y(t), t) + 1 - exp(-t),0),Eq(2*x(t) + 3*y(t) - exp(2*t) + Derivative(x(t), t) + Derivative(y(t), t) - 1,0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)