Internal
problem
ID
[3824]
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.1,
page
587
Problem
number
:
21
Date
solved
:
Tuesday, January 28, 2025 at 02:39:18 PM
CAS
classification
:
system_of_ODEs
With initial conditions
✓ Solution by Maple
Time used: 0.246 (sec). Leaf size: 49
dsolve([diff(x__1(t),t) = -tan(t)*x__1(t)+3*cos(t)^2, diff(x__2(t),t) = x__1(t)+tan(t)*x__2(t)+2*sin(t), x__1(0) = 4, x__2(0) = 0], singsol=all)
✓ Solution by Mathematica
Time used: 0.044 (sec). Leaf size: 43
DSolve[{D[x1[t],t]==-Tan[t]*x1[t]+3*Cos[t]^2,D[x2[t],t]==x1[t]+Tan[t]*x2[t]+2*Sin[t]},{x1[0]==4,x2[0]==0},{x1[t],x2[t]},t,IncludeSingularSolutions -> True]