Internal
problem
ID
[17151]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Chapter
3
(Systems
of
differential
equations).
Section
19.
Basic
concepts
and
definitions.
Exercises
page
199
Problem
number
:
768
Date
solved
:
Friday, March 14, 2025 at 04:49:21 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x__1(t),t) = exp(t-x__1(t)), diff(x__2(t),t) = 2*exp(x__1(t))]; dsolve(ode);
ode={D[ x1[t],t]==Exp[t-x1[t]],D[ x2[t],t]==2*Exp[x1[t]]}; ic={}; 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(-exp(t - x__1(t)) + Derivative(x__1(t), t),0),Eq(-2*exp(x__1(t)) + Derivative(x__2(t), t),0)] ics = {} dsolve(ode,func=[x__1(t),x__2(t)],ics=ics)
NotImplementedError :