Internal
problem
ID
[20216]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
VII.
Linear
equations
with
variable
coefficients.
Problems
at
page
91
Problem
number
:
Ex.
1
Date
solved
:
Friday, October 03, 2025 at 07:38:09 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=(5+2*x)^2*diff(diff(y(x),x),x)-6*(5-2*x)*diff(y(x),x)+8*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=(5+2*x)^2*D[y[x],{x,2}]-6*(5-2*x)*D[y[x],x]+8*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((2*x + 5)**2*Derivative(y(x), (x, 2)) + (12*x - 30)*Derivative(y(x), x) + 8*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
False