Internal
problem
ID
[21367]
Book
:
A
Textbook
on
Ordinary
Differential
Equations
by
Shair
Ahmad
and
Antonio
Ambrosetti.
Second
edition.
ISBN
978-3-319-16407-6.
Springer
2015
Section
:
Chapter
8.
Qualitative
analysis
of
2
by
2
systems
and
nonlinear
second
order
equations.
Excercise
8.5
at
page
184
Problem
number
:
14
Date
solved
:
Sunday, October 12, 2025 at 05:51:29 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t) = 2*x(t)-2*x(t)*y(t), diff(y(t),t) = -y(t)+x(t)*y(t)]; dsolve(ode);
ode={D[x[t],t]==2*x[t]-2*x[t]*y[t],D[y[t],t]==-y[t]+x[t]*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(2*x(t)*y(t) - 2*x(t) + Derivative(x(t), t),0),Eq(-x(t)*y(t) + y(t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)