Internal
problem
ID
[14272]
Book
:
DIFFERENTIAL
and
INTEGRAL
CALCULUS.
VOL
I.
by
N.
PISKUNOV.
MIR
PUBLISHERS,
Moscow
1969.
Section
:
Chapter
8.
Differential
equations.
Exercises
page
595
Problem
number
:
170
Date
solved
:
Tuesday, January 28, 2025 at 06:25:13 AM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.038 (sec). Leaf size: 21
dsolve([diff(x(t),t) = y(t)+1, diff(y(t),t) = x(t)+1, x(0) = -2, y(0) = 0], singsol=all)
✓ Solution by Mathematica
Time used: 0.005 (sec). Leaf size: 24
DSolve[{D[x[t],t]==y[t]+1,D[y[t],t]==x[t]+1},{x[0]==-2,y[0]==0},{x[t],y[t]},t,IncludeSingularSolutions -> True]