Internal
problem
ID
[6918]
Book
:
Ordinary
Differential
Equations,
By
Tenenbaum
and
Pollard.
Dover,
NY
1963
Section
:
Chapter
2.
Special
types
of
differential
equations
of
the
first
kind.
Lesson
7
Problem
number
:
First
order
with
homogeneous
Coefficients.
Exercise
7.14,
page
61
Date
solved
:
Tuesday, September 30, 2025 at 04:05:37 PM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
With initial conditions
ode:=diff(y(x),x)-y(x)/x+csc(y(x)/x) = 0; ic:=[y(1) = 0]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=D[y[x],x]-y[x]/x+Csc[y[x]/x]==0; ic=y[1]==0; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) + 1/sin(y(x)/x) - y(x)/x,0) ics = {y(1): 0} dsolve(ode,func=y(x),ics=ics)