Internal
problem
ID
[24416]
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.
Miscellaneous
Exercises
at
page
45
Problem
number
:
34
Date
solved
:
Thursday, October 02, 2025 at 10:26:28 PM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x)*G(y),0]`]]
ode:=v(u)-(exp(v(u))+2*u*v(u)-2*u)*diff(v(u),u) = 0; dsolve(ode,v(u), singsol=all);
ode=v[u]-(Exp[v[u]]+2*u*v[u]-2*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(-(2*u*v(u) - 2*u + exp(v(u)))*Derivative(v(u), u) + v(u),0) ics = {} dsolve(ode,func=v(u),ics=ics)
KeyError : ordered_hints