Internal
problem
ID
[12616]
Book
:
Handbook
of
exact
solutions
for
ordinary
differential
equations.
By
Polyanin
and
Zaitsev.
Second
edition
Section
:
Chapter
2,
Second-Order
Differential
Equations.
section
2.1.2-6
Problem
number
:
195
Date
solved
:
Thursday, March 13, 2025 at 11:53:13 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=(a*x^3+b*x^2+c*x)*diff(diff(y(x),x),x)+(alpha*x^2+beta*x+2*c)*diff(y(x),x)+(beta-2*b)*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=(a*x^3+b*x^2+c*x)*D[y[x],{x,2}]+(\[Alpha]*x^2+\[Beta]*x+2*c)*D[y[x],x]+(\[Beta]-2*b)*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") Alpha = symbols("Alpha") BETA = symbols("BETA") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq((BETA - 2*b)*y(x) + (Alpha*x**2 + BETA*x + 2*c)*Derivative(y(x), x) + (a*x**3 + b*x**2 + c*x)*Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
False