Internal
problem
ID
[18639]
Book
:
A
short
course
on
differential
equations.
By
Donald
Francis
Campbell.
Maxmillan
company.
London.
1907
Section
:
Chapter
VI.
Certain
particular
forms
of
equations.
Exercises
at
page
74
Problem
number
:
14
Date
solved
:
Monday, March 31, 2025 at 05:48:37 PM
CAS
classification
:
[[_2nd_order, _missing_y]]
ode:=diff(diff(V(r),r),r)+1/r*diff(V(r),r) = 0; dsolve(ode,V(r), singsol=all);
ode=D[V[r],{r,2}]+1/r*D[V[r],r]==0; ic={}; DSolve[{ode,ic},V[r],r,IncludeSingularSolutions->True]
from sympy import * r = symbols("r") V = Function("V") ode = Eq(Derivative(V(r), (r, 2)) + Derivative(V(r), r)/r,0) ics = {} dsolve(ode,func=V(r),ics=ics)