Internal
problem
ID
[20924]
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
3
page
147
Date
solved
:
Thursday, October 02, 2025 at 06:49:14 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t)+5*x(t)+y(t) = exp(t), diff(y(t),t)-x(t)+3*y(t) = exp(2*t)]; dsolve(ode);
ode={D[x[t],t]+5*x[t]+y[t]==Exp[t],D[y[t],t]-x[t]+3*y[t]==Exp[2*t]}; 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(5*x(t) + y(t) - exp(t) + Derivative(x(t), t),0),Eq(-x(t) + 3*y(t) - exp(2*t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)