Internal
problem
ID
[24297]
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
27
Problem
number
:
34
Date
solved
:
Thursday, October 02, 2025 at 10:10:49 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _Bernoulli]
With initial conditions
ode:=v(x)*(3*x+2*v(x))-x^2*diff(v(x),x) = 0; ic:=[v(1) = 2]; dsolve([ode,op(ic)],v(x), singsol=all);
ode=v[x]*( 3*x+2*v[x] )-( x^2 )*D[v[x],x]==0; ic={v[1]==2}; DSolve[{ode,ic},v[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") v = Function("v") ode = Eq(-x**2*Derivative(v(x), x) + (3*x + 2*v(x))*v(x),0) ics = {v(1): 2} dsolve(ode,func=v(x),ics=ics)