Internal
problem
ID
[4739]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
1.
THE
DIFFERENTIAL
EQUATION
IS
OF
FIRST
ORDER
AND
OF
FIRST
DEGREE,
page
223
Problem
number
:
136
Date
solved
:
Sunday, October 12, 2025 at 01:18:10 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(y)]`]]
ode:=diff(y(x),x) = x^(m-1)*y(x)^(1-n)*f(a*x^m+b*y(x)^n); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==x^(m-1)*y[x]^(1-n)*f[a*x^m + b*y[x]^n]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") m = symbols("m") n = symbols("n") y = Function("y") f = Function("f") ode = Eq(-x**(m - 1)*f(a*x**m + b*y(x)**n)*y(x)**(1 - n) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out