Internal
problem
ID
[20010]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
I.
Definitions.
Formation
of
differential
equation.
Exercises
at
page
12
Problem
number
:
Ex.
5
Date
solved
:
Thursday, October 02, 2025 at 05:06:29 PM
CAS
classification
:
[[_2nd_order, _missing_y]]
ode:=diff(diff(v(r),r),r)+2/r*diff(v(r),r) = 0; dsolve(ode,v(r), singsol=all);
ode=D[v[r],{r,2}]+2/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)) + 2*Derivative(v(r), r)/r,0) ics = {} dsolve(ode,func=v(r),ics=ics)