Internal
problem
ID
[19492]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Book
Solved
Excercises.
Chapter
IV.
Equations
of
the
first
order
but
not
of
the
first
degree
Problem
number
:
Ex
22
page
61
Date
solved
:
Monday, March 31, 2025 at 07:25:34 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
ode:=(diff(y(x),x)*y(x)+n*x)^2 = (y(x)^2+n*x^2)*(1+diff(y(x),x)^2); dsolve(ode,y(x), singsol=all);
ode=(D[y[x],x]*y[x]+n*x)^2==(y[x]^2+n*x^2)*(1+D[y[x],x]^2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") n = symbols("n") y = Function("y") ode = Eq((n*x + y(x)*Derivative(y(x), x))**2 - (n*x**2 + y(x)**2)*(Derivative(y(x), x)**2 + 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)