Internal
problem
ID
[24242]
Book
:
A
short
course
in
Differential
Equations.
Earl
D.
Rainville.
Second
edition.
1958.
Macmillan
Publisher,
NY.
CAT
58-5010
Section
:
Chapter
2.
Equations
of
the
first
order
and
first
degree.
Exercises
at
page
21
Problem
number
:
7
Date
solved
:
Thursday, October 02, 2025 at 10:01:23 PM
CAS
classification
:
[_separable]
ode:=diff(v(p),p) = -v(p)/p; dsolve(ode,v(p), singsol=all);
ode=D[v[p],{p,1}]==-v[p]/p; ic={}; DSolve[{ode,ic},v[p],p,IncludeSingularSolutions->True]
from sympy import * p = symbols("p") v = Function("v") ode = Eq(Derivative(v(p), p) + v(p)/p,0) ics = {} dsolve(ode,func=v(p),ics=ics)