Internal
problem
ID
[5310]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
25
Problem
number
:
720
Date
solved
:
Friday, March 14, 2025 at 01:29:52 AM
CAS
classification
:
[_Bernoulli]
ode:=f(x)*y(x)^m*diff(y(x),x)+g(x)*y(x)^(m+1)+h(x)*y(x)^n = 0; dsolve(ode,y(x), singsol=all);
ode=f[x] y[x]^m D[y[x],x]+ g[x] y[x]^(m+1)+ h[x] y[x]^n==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") m = symbols("m") n = symbols("n") y = Function("y") f = Function("f") g = Function("g") h = Function("h") ode = Eq(f(x)*y(x)**m*Derivative(y(x), x) + g(x)*y(x)**(m + 1) + h(x)*y(x)**n,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out