Internal
problem
ID
[4820]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
8
Problem
number
:
220
Date
solved
:
Tuesday, March 04, 2025 at 07:21:08 PM
CAS
classification
:
[[_homogeneous, `class G`]]
ode:=x*diff(y(x),x) = y(x)*f(x^m*y(x)^n); dsolve(ode,y(x), singsol=all);
ode=x D[y[x],x]==y[x] f[x^m y[x]^n] ; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") m = symbols("m") n = symbols("n") y = Function("y") ode = Eq(x*Derivative(y(x), x) - f(x**m*y(x)**n)*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - f(x**m*y(x)**n)*y(x)/x cannot be solved by the factorable group method