Internal
problem
ID
[20446]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Chapter
III.
Ordinary
linear
differential
equations
with
constant
coefficients.
Exercise
III(A)
at
page
31
Problem
number
:
3
Date
solved
:
Thursday, October 02, 2025 at 06:02:59 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=2*diff(diff(x(t),t),t)+5*diff(x(t),t)-12*x(t) = 0; dsolve(ode,x(t), singsol=all);
ode=2*D[x[t],{t,2}]+5*D[x[t],t]-12*x[t]==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-12*x(t) + 5*Derivative(x(t), t) + 2*Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics)