Internal
problem
ID
[4981]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
14
Problem
number
:
381
Date
solved
:
Sunday, March 30, 2025 at 04:27:51 AM
CAS
classification
:
[_linear]
ode:=x^n*diff(y(x),x) = a+b*x^(n-1)*y(x); dsolve(ode,y(x), singsol=all);
ode=x^n D[y[x],x]==a+b x^(n-1) y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") n = symbols("n") y = Function("y") ode = Eq(-a - b*x**(n - 1)*y(x) + x**n*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out