Internal
problem
ID
[19801]
Book
:
Elementary
Differential
Equations.
By
R.L.E.
Schwarzenberger.
Chapman
and
Hall.
London.
First
Edition
(1969)
Section
:
Chapter
4.
Autonomous
systems.
Exercises
at
page
69
Problem
number
:
2
Date
solved
:
Thursday, October 02, 2025 at 04:43:56 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t) = x(t), diff(y(t),t) = x(t)+2*y(t)]; dsolve(ode);
ode={D[x[t],t]==x[t],D[y[t],t]==x[t]+2*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) + Derivative(x(t), t),0),Eq(-x(t) - 2*y(t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)