Internal
problem
ID
[17493]
Book
:
Differential
equations.
An
introduction
to
modern
methods
and
applications.
James
Brannan,
William
E.
Boyce.
Third
edition.
Wiley
2015
Section
:
Chapter
4.
Second
order
linear
equations.
Section
4.2
(Theory
of
second
order
linear
homogeneous
equations).
Problems
at
page
226
Problem
number
:
28
Date
solved
:
Thursday, March 13, 2025 at 10:10:31 AM
CAS
classification
:
[[_2nd_order, _missing_x]]
Using reduction of order method given that one solution is
ode:=a*diff(diff(y(t),t),t)+b*diff(y(t),t)+c*y(t) = 0; dsolve(ode,y(t), singsol=all);
ode=a*D[y[t],{t,2}]+b*D[y[t],t]+c*y[t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(a*Derivative(y(t), (t, 2)) + b*Derivative(y(t), t) + c*y(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)