Internal
problem
ID
[19570]
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
6
page
150
Date
solved
:
Monday, March 31, 2025 at 07:33:48 PM
CAS
classification
:
system_of_ODEs
ode:=[4*diff(x(t),t)+9*diff(y(t),t)+11*x(t)+31*y(t) = exp(t), 3*diff(x(t),t)+7*diff(y(t),t)+8*x(t)+24*y(t) = exp(2*t)]; dsolve(ode);
ode={4*D[x[t],t]+9*D[y[t],t]+11*x[t]+31*y[t]==Exp[t],3*D[x[t],t]+7*D[y[t],t]+8*x[t]+24*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(11*x(t) + 31*y(t) - exp(t) + 4*Derivative(x(t), t) + 9*Derivative(y(t), t),0),Eq(8*x(t) + 24*y(t) - exp(2*t) + 3*Derivative(x(t), t) + 7*Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)