Internal
problem
ID
[23208]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
10.
The
Laplace
transform.
Exercise
10c
at
page
156
Problem
number
:
1
Date
solved
:
Thursday, October 02, 2025 at 09:24:23 PM
CAS
classification
:
system_of_ODEs
With initial conditions
ode:=[diff(x(t),t)+y(t) = 4, x(t)-diff(y(t),t) = 3]; ic:=[x(0) = 0, y(0) = 0]; dsolve([ode,op(ic)]);
ode={D[x[t],t]+y[t]==4,x[t]-D[y[t],t]==3}; ic={x[0]==0,y[0]==0}; 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) + Derivative(x(t), t) - 4,0),Eq(x(t) - Derivative(y(t), t) - 3,0)] ics = {x(0): 0, y(0): 0} dsolve(ode,func=[x(t),y(t)],ics=ics)