Internal
problem
ID
[24883]
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
:
1
Date
solved
:
Thursday, October 02, 2025 at 10:49:03 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(v(x),x)-2*v(x)+2*diff(w(x),x) = 2-4*exp(2*x), 2*diff(v(x),x)-3*v(x)+3*diff(w(x),x)-w(x) = 0]; dsolve(ode);
ode={D[v[x],x]-2*v[x]+2*D[w[x],x]==2-4*Exp[2*x],2*D[v[x],x]-3*v[x]+3*D[w[x],x]-w[x]==0}; ic={}; DSolve[{ode,ic},{v[x],w[x]},x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") v = Function("v") w = Function("w") ode=[Eq(-2*v(x) + 4*exp(2*x) + Derivative(v(x), x) + 2*Derivative(w(x), x) - 2,0),Eq(-3*v(x) - w(x) + 2*Derivative(v(x), x) + 3*Derivative(w(x), x),0)] ics = {} dsolve(ode,func=[v(x),w(x)],ics=ics)