Internal
problem
ID
[19864]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
33.
Problems
at
page
91
Problem
number
:
10
(c)
Date
solved
:
Thursday, October 02, 2025 at 04:51:37 PM
CAS
classification
:
[_separable]
ode:=u*ln(u)*diff(v(u),u)+sin(v(u))^2 = 1; dsolve(ode,v(u), singsol=all);
ode=u*Log[u]*D[v[u],u]+Sin[v[u]]==0; ic={}; DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") v = Function("v") ode = Eq(u*log(u)*Derivative(v(u), u) + sin(v(u))**2 - 1,0) ics = {} dsolve(ode,func=v(u),ics=ics)