Internal
problem
ID
[2795]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
4.
Qualitative
theory
of
differential
equations.
Section
4.1
(Introduction).
Page
377
Problem
number
:
7
Date
solved
:
Sunday, March 30, 2025 at 12:20:38 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t) = -1-y(t)-exp(x(t)), diff(y(t),t) = x(t)^2+y(t)*(exp(x(t))-1), diff(z(t),t) = x(t)+sin(z(t))]; dsolve(ode);
ode={D[x[t],t]==-1-y[t]-Exp[x[t]],D[y[t],t]==x[t]^2+y[t]*(Exp[x[t]]-1),D[z[t],t]==x[t]+Sin[z[t]]}; ic={}; DSolve[{ode,ic},{x[t],y[t],z[t]},t,IncludeSingularSolutions->True]
Not solved
from sympy import * t = symbols("t") x = Function("x") y = Function("y") z = Function("z") ode=[Eq(y(t) + exp(x(t)) + Derivative(x(t), t) + 1,0),Eq((1 - exp(x(t)))*y(t) - x(t)**2 + Derivative(y(t), t),0),Eq(-x(t) - sin(z(t)) + Derivative(z(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t),z(t)],ics=ics)
NotImplementedError :