Internal
problem
ID
[24365]
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
43
Problem
number
:
15
Date
solved
:
Thursday, October 02, 2025 at 10:22:14 PM
CAS
classification
:
[_rational, [_1st_order, `_with_symmetry_[F(x)*G(y),0]`], [_Abel, `2nd type`, `class B`]]
ode:=v(x)+(2*x+1-v(x)*x)*diff(v(x),x) = 0; dsolve(ode,v(x), singsol=all);
ode=v[x]+(2*x+1-v[x]*x)*D[v[x],x]==0; ic={}; DSolve[{ode,ic},v[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") v = Function("v") ode = Eq((-x*v(x) + 2*x + 1)*Derivative(v(x), x) + v(x),0) ics = {} dsolve(ode,func=v(x),ics=ics)