Internal
problem
ID
[4819]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
8
Problem
number
:
219
Date
solved
:
Friday, March 14, 2025 at 01:28:06 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]
ode:=x*diff(y(x),x)+n*y(x) = f(x)*g(x^n*y(x)); dsolve(ode,y(x), singsol=all);
ode=x D[y[x],x]+ n y[x]==f[x] g[x^n y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") n = symbols("n") y = Function("y") ode = Eq(n*y(x) + x*Derivative(y(x), x) - f(x)*g(x**n*y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out