Internal
problem
ID
[4940]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
12
Problem
number
:
340
Date
solved
:
Tuesday, March 04, 2025 at 07:32:21 PM
CAS
classification
:
[_separable]
ode:=(b*x^2+a)*diff(y(x),x) = c*x*y(x)*ln(y(x)); dsolve(ode,y(x), singsol=all);
ode=(a+b x^2)D[y[x],x]==c x y[x] Log[y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(-c*x*y(x)*log(y(x)) + (a + b*x**2)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)