Internal
problem
ID
[23139]
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
5b
at
page
77
Problem
number
:
6
Date
solved
:
Thursday, October 02, 2025 at 09:23:25 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
With initial conditions
ode:=diff(diff(x(t),t),t)+2*diff(x(t),t)+4*x(t) = 0; ic:=[x(0) = 5, x(1/6*3^(1/2)*Pi) = 2*exp(-1/6*3^(1/2)*Pi)]; dsolve([ode,op(ic)],x(t), singsol=all);
ode=D[x[t],{t,2}]+2*D[x[t],t]+4*x[t]==0; ic={x[0]==5,x[Pi/(2*Sqrt[3])]== 2*Exp[-Pi/(2*Sqrt[3])] }; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(4*x(t) + 2*Derivative(x(t), t) + Derivative(x(t), (t, 2)),0) ics = {x(0): 5, x(sqrt(3)*Pi/6): 2*exp(-sqrt(3)*pi/6)} dsolve(ode,func=x(t),ics=ics)