Internal
problem
ID
[22886]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
4.
Linear
differential
equations.
B
Exercises
at
page
213
Problem
number
:
7
Date
solved
:
Friday, October 03, 2025 at 08:03:34 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=(r^2+r)*diff(diff(R(r),r),r)+r*diff(R(r),r)-n*(n+1)*R(r) = 0; dsolve(ode,R(r), singsol=all);
ode=(r+r^2)*D[R[r],{r,2}]+r*D[R[r],r]-n*(n+1)*R[r]==0; ic={}; DSolve[{ode,ic},R[r],r,IncludeSingularSolutions->True]
from sympy import * r = symbols("r") n = symbols("n") R = Function("R") ode = Eq(-n*(n + 1)*R(r) + r*Derivative(R(r), r) + (r**2 + r)*Derivative(R(r), (r, 2)),0) ics = {} dsolve(ode,func=R(r),ics=ics)
False