Internal
problem
ID
[23127]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
5.
Linear
equations
of
the
second
order
with
constant
coefficients.
Exercise
5a
at
page
74
Problem
number
:
13
Date
solved
:
Thursday, October 02, 2025 at 09:23:08 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
With initial conditions
ode:=38*diff(diff(x(t),t),t)+10*diff(x(t),t)-3*x(t) = 0; ic:=[x(0) = 5, D(x)(0) = 0]; dsolve([ode,op(ic)],x(t), singsol=all);
ode=38*D[x[t],{t,2}]+10*D[x[t],t]-3*x[t]==0; ic={x[0]==5,Derivative[1][x][0] ==0}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-3*x(t) + 10*Derivative(x(t), t) + 38*Derivative(x(t), (t, 2)),0) ics = {x(0): 5, Subs(Derivative(x(t), t), t, 0): 0} dsolve(ode,func=x(t),ics=ics)