Internal
problem
ID
[16581]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
6.
Systems
of
Differential
Equations.
Exercises
6.1,
page
282
Problem
number
:
5
Date
solved
:
Monday, March 31, 2025 at 02:59:34 PM
CAS
classification
:
system_of_ODEs
With initial conditions
ode:=[diff(x__1(t),t) = -3*x__1(t), diff(x__2(t),t) = 1]; ic:=x__1(0) = -1x__2(0) = 1; dsolve([ode,ic]);
ode={D[ x1[t],t]==-3*x1[t],D[ x2[t],t]==1}; ic={x1[0]==-1,x2[0]==1}; DSolve[{ode,ic},{x1[t],x2[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x__1 = Function("x__1") x__2 = Function("x__2") ode=[Eq(3*x__1(t) + Derivative(x__1(t), t),0),Eq(Derivative(x__2(t), t) - 1,0)] ics = {} dsolve(ode,func=[x__1(t),x__2(t)],ics=ics)