Internal
problem
ID
[18509]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
VII.
Linear
equations
of
order
higher
than
the
first.
section
56.
Problems
at
page
163
Problem
number
:
10
Date
solved
:
Thursday, March 13, 2025 at 12:11:19 PM
CAS
classification
:
[[_linear, `class A`]]
ode:=5*diff(x(t),t)+x(t) = sin(3*t); dsolve(ode,x(t), singsol=all);
ode=5*D[x[t],t]+x[t]==Sin[3*t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(x(t) - sin(3*t) + 5*Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)