Internal
problem
ID
[11909]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
8,
system
of
first
order
odes
Problem
number
:
1910
Date
solved
:
Tuesday, January 28, 2025 at 06:24:04 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.132 (sec). Leaf size: 36
dsolve([t*diff(x(t),t)=2*x(t)-t,t^3*diff(y(t),t)=-x(t)+t^2*y(t)+t,t^4*diff(z(t),t)=-x(t)-t^2*y(t)+t^3*z(t)+t],singsol=all)
✓ Solution by Mathematica
Time used: 0.005 (sec). Leaf size: 39
DSolve[{t*D[x[t],t]==2*x[t]-t,t^3*D[y[t],t]==-x[t]+t^2*y[t]+t,t^4*D[z[t],t]==-x[t]-t^2*y[t]+t^3*z[t]+t},{x[t],y[t],z[t]},t,IncludeSingularSolutions -> True]