Internal
problem
ID
[14036]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
6.4
Reduction
to
a
single
ODE.
Problems
page
415
Problem
number
:
Problem
4(c)
Date
solved
:
Monday, March 31, 2025 at 08:22:36 AM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t)-diff(y(t),t) = x(t)+y(t)-t, 2*diff(x(t),t)+3*diff(y(t),t) = 2*x(t)+6]; dsolve(ode);
ode={D[x[t],t]-D[y[t],t]==x[t]+y[t]-t,2*D[x[t],t]+3*D[y[t],t]==2*x[t]+6}; 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(t - x(t) - y(t) + Derivative(x(t), t) - Derivative(y(t), t),0),Eq(-2*x(t) + 2*Derivative(x(t), t) + 3*Derivative(y(t), t) - 6,0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)