Internal
problem
ID
[2819]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
4.
Qualitative
theory
of
differential
equations.
Section
4.3
(Stability
of
equilibrium
solutions).
Page
393
Problem
number
:
6
Date
solved
:
Friday, March 14, 2025 at 01:26:47 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t) = exp(y(t))-x(t), diff(y(t),t) = exp(x(t))+y(t)]; dsolve(ode);
ode={D[x[t],t]==Exp[y[t]]-x[t],D[y[t],t]==Exp[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(x(t) - exp(y(t)) + Derivative(x(t), t),0),Eq(-y(t) - exp(x(t)) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)
NotImplementedError : The given ODE Derivative(v(u), u) - (-v(u) - exp(u))/(u - exp(v(u))) cannot be solved by the factorable group method