Internal
problem
ID
[24884]
Book
:
A
short
course
in
Differential
Equations.
Earl
D.
Rainville.
Second
edition.
1958.
Macmillan
Publisher,
NY.
CAT
58-5010
Section
:
Chapter
13.
Systems
of
equations.
Exercises
at
page
200
Problem
number
:
2
Date
solved
:
Thursday, October 02, 2025 at 10:49:04 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(y(x),x)-2*y(x)-diff(v(x),x)-v(x) = 6*exp(3*x), 2*diff(y(x),x)-3*y(x)+diff(v(x),x)-3*v(x) = 6*exp(3*x)]; dsolve(ode);
ode={D[y[x],x]-2*y[x]+2*D[v[x],x]-v[x]==6*Exp[3*x],2*D[y[x],x]-3*y[x]+D[v[x],x]-3*v[x]==6*Exp[3*x]}; ic={}; DSolve[{ode,ic},{y[x],v[x]},x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") v = Function("v") ode=[Eq(-v(x) - 2*y(x) - 6*exp(3*x) + 2*Derivative(v(x), x) + Derivative(y(x), x),0),Eq(-3*v(x) - 3*y(x) - 6*exp(3*x) + Derivative(v(x), x) + 2*Derivative(y(x), x),0)] ics = {} dsolve(ode,func=[y(x),v(x)],ics=ics)
Timed Out