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