Internal
problem
ID
[11879]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
8,
system
of
first
order
odes
Problem
number
:
1880
Date
solved
:
Tuesday, January 28, 2025 at 06:23:57 PM
CAS
classification
:
system_of_ODEs
✓ Solution by Maple
Time used: 0.165 (sec). Leaf size: 22
dsolve([t^2*(1-sin(t))*diff(x(t),t)=t*(1-2*sin(t))*x(t)+t^2*y(t),t^2*(1-sin(t))*diff(y(t),t)=(t*cos(t)-sin(t))*x(t)+t*(1-t*cos(t))*y(t)],singsol=all)
✓ Solution by Mathematica
Time used: 0.007 (sec). Leaf size: 27
DSolve[{t^2*(1-Sin[t])*D[x[t],t]==t*(1-2*Sin[t])*x[t]+t^2*y[t],t^2*(1-Sin[t])*D[y[t],t]==(t*Cos[t]-Sin[t])*x[t]+t*(1-t*Cos[t])*y[t]},{x[t],y[t]},t,IncludeSingularSolutions -> True]