Internal
problem
ID
[23682]
Book
:
Ordinary
differential
equations
with
modern
applications.
Ladas,
G.
E.
and
Finizio,
N.
Wadsworth
Publishing.
California.
1978.
ISBN
0-534-00552-7.
QA372.F56
Section
:
Chapter
3.
Linear
Systems.
Exercise
at
page
149
Problem
number
:
17
Date
solved
:
Sunday, October 12, 2025 at 05:55:14 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x__1(t),t) = x__1(t)+(1-t)*x__2(t), diff(x__2(t),t) = 1/t*x__1(t)-x__2(t)]; dsolve(ode);
ode={D[x1[t],t]==x1[t]+(1-t)*x2[t],D[x2[t],t]==1/t*x1[t]-x2[t]}; ic={}; DSolve[{ode,ic},{x1[t],x2[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x1 = Function("x1") x2 = Function("x2") ode=[Eq(-(1 - t)*x2(t) - x1(t) + Derivative(x1(t), t),0),Eq(x2(t) + Derivative(x2(t), t) - x1(t)/t,0)] ics = {} dsolve(ode,func=[x1(t),x2(t)],ics=ics)