Internal
problem
ID
[15375]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
6.
Introduction
to
Systems
of
ODEs.
Problems
page
408
Problem
number
:
Problem
2(c)
Date
solved
:
Thursday, October 02, 2025 at 10:12:20 AM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(y(t),t),t)-3*diff(y(t),t)-7*y(t) = 4; dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]-3*D[y[t],t]-7*y[t]==4; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-7*y(t) - 3*Derivative(y(t), t) + Derivative(y(t), (t, 2)) - 4,0) ics = {} dsolve(ode,func=y(t),ics=ics)