Internal
problem
ID
[18529]
Book
:
A
short
course
on
differential
equations.
By
Donald
Francis
Campbell.
Maxmillan
company.
London.
1907
Section
:
Chapter
I.
Introduction.
Exercises
at
page
13
Problem
number
:
12
Date
solved
:
Thursday, March 13, 2025 at 12:11:52 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)