Internal
problem
ID
[8959]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
4.0
Problem
number
:
67
Date
solved
:
Monday, January 27, 2025 at 05:20:54 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.031 (sec). Leaf size: 67
dsolve([diff(x(t),t)=x(t)+2*y(t)+2*t+1,diff(y(t),t)=5*x(t)+y(t)+3*t-1],singsol=all)
✓ Solution by Mathematica
Time used: 11.167 (sec). Leaf size: 158
DSolve[{D[x[t],t]==x[t]+2*y[t]+2*t+1,D[y[t],t]==5*x[t]+y[t]+3*t-1},{x[t],y[t]},t,IncludeSingularSolutions -> True]