Internal
problem
ID
[24272]
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
:
7
Date
solved
:
Thursday, October 02, 2025 at 10:05:10 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, [_Abel, `2nd type`, `class A`]]
ode:=5*v(u)-u+(3*v(u)-7*u)*diff(v(u),u) = 0; dsolve(ode,v(u), singsol=all);
ode=(5*v[u]-u)+(3*v[u]-7*u)*D[v[u],u]==0; ic={}; DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") v = Function("v") ode = Eq(-u + (-7*u + 3*v(u))*Derivative(v(u), u) + 5*v(u),0) ics = {} dsolve(ode,func=v(u),ics=ics)