Internal
problem
ID
[5301]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
25
Problem
number
:
711
Date
solved
:
Sunday, March 30, 2025 at 07:52:14 AM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
ode:=(a*x^3+(a*x+b*y(x))^3)*y(x)*diff(y(x),x)+x*((a*x+b*y(x))^3+b*y(x)^3) = 0; dsolve(ode,y(x), singsol=all);
ode=(a*x^3+(a*x+b*y[x])^3)*y[x]*D[y[x],x]+x*((a*x+b*y[x])^3+b*y[x]^3)==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(x*(b*y(x)**3 + (a*x + b*y(x))**3) + (a*x**3 + (a*x + b*y(x))**3)*y(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out