Internal
problem
ID
[3833]
Book
:
Differential
equations
and
linear
algebra,
Stephen
W.
Goode
and
Scott
A
Annin.
Fourth
edition,
2015
Section
:
Chapter
9,
First
order
linear
systems.
Section
9.3,
page
598
Problem
number
:
7
Date
solved
:
Tuesday, January 28, 2025 at 02:39:19 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.019 (sec). Leaf size: 28
dsolve([diff(x__1(t),t)=1/t*x__1(t)+t*x__2(t),diff(x__2(t),t)=-1/t*x__1(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.003 (sec). Leaf size: 33
DSolve[{D[x1[t],t]==1/t*x1[t]+t*x2[t],D[x2[t],t]==-1/t*x1[t]},{x1[t],x2[t]},t,IncludeSingularSolutions -> True]