Internal
problem
ID
[4986]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
14
Problem
number
:
388
Date
solved
:
Tuesday, March 04, 2025 at 07:40:22 PM
CAS
classification
:
[_Chini]
ode:=x^k*diff(y(x),x) = a*x^m+b*y(x)^n; dsolve(ode,y(x), singsol=all);
ode=x^k D[y[x],x]==a x^m + b y[x]^n; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") k = symbols("k") m = symbols("m") n = symbols("n") y = Function("y") ode = Eq(-a*x**m - b*y(x)**n + x**k*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out