Internal
problem
ID
[6922]
Book
:
A
First
Course
in
Differential
Equations
with
Modeling
Applications
by
Dennis
G.
Zill.
12
ed.
Metric
version.
2024.
Cengage
learning.
Section
:
Chapter
1.
Introduction
to
differential
equations.
Exercises
1.1
at
page
12
Problem
number
:
49
Date
solved
:
Wednesday, March 05, 2025 at 02:50:47 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t) = x(t)+3*y(t), diff(y(t),t) = 5*x(t)+3*y(t)]; dsolve(ode);
ode={D[x[t],t]==x[t]+3*y[t],D[y[t],t]==5*x[t]+3*y[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) - 3*y(t) + Derivative(x(t), t),0),Eq(-5*x(t) - 3*y(t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)