Internal
problem
ID
[2796]
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
:
8
Date
solved
:
Sunday, March 30, 2025 at 12:20:39 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t) = x(t)-y(t)^2, diff(y(t),t) = x(t)^2-y(t), diff(z(t),t) = exp(z(t))-x(t)]; dsolve(ode);
ode={D[x[t],t]==x[t]-y[t]^2,D[y[t],t]==x[t]^2-y[t],D[z[t],t]==Exp[z[t]]-x[t]}; ic={}; DSolve[{ode,ic},{x[t],y[t],z[t]},t,IncludeSingularSolutions->True]
Too large to display
from sympy import * t = symbols("t") x = Function("x") y = Function("y") z = Function("z") ode=[Eq(-x(t) + y(t)**2 + Derivative(x(t), t),0),Eq(-x(t)**2 + y(t) + Derivative(y(t), t),0),Eq(x(t) - exp(z(t)) + Derivative(z(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t),z(t)],ics=ics)
NotImplementedError :