Internal
problem
ID
[19568]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Book
Solved
Excercises.
Chapter
IX.
Simultaneous
equations
Problem
number
:
Ex
1
page
146
Date
solved
:
Monday, March 31, 2025 at 07:33:45 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t)-7*x(t)+y(t) = 0, diff(y(t),t)-2*x(t)-5*y(t) = 0]; dsolve(ode);
ode={D[x[t],t]-7*x[t]+y[t]==0,D[y[t],t]-2*x[t]-5*y[t]==0}; ic={}; DSolve[{ode,ic},{x[t],y[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") y = Function("y") ode=[Eq(-7*x(t) + y(t) + Derivative(x(t), t),0),Eq(-2*x(t) - 5*y(t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)