Internal
problem
ID
[13084]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
8,
system
of
first
order
odes
Problem
number
:
1861
Date
solved
:
Wednesday, October 01, 2025 at 03:34:21 AM
CAS
classification
:
system_of_ODEs
ode:=[a*diff(x(t),t)+b*diff(y(t),t) = alpha*x(t)+beta*y(t), b*diff(x(t),t)-a*diff(y(t),t) = beta*x(t)-alpha*y(t)]; dsolve(ode);
ode={a*D[x[t],t]+b*D[y[t],t]==\[Alpha]*x[t]+\[Beta]*y[t],b*D[x[t],t]-a*D[y[t],t]==\[Beta]*x[t]-\[Alpha]*y[t]}; ic={}; DSolve[{ode,ic},{x[t],y[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") Alpha = symbols("Alpha") BETA = symbols("BETA") a = symbols("a") b = symbols("b") x = Function("x") y = Function("y") ode=[Eq(-Alpha*x(t) - BETA*y(t) + a*Derivative(x(t), t) + b*Derivative(y(t), t),0),Eq(Alpha*y(t) - BETA*x(t) - a*Derivative(y(t), t) + b*Derivative(x(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)