Internal
problem
ID
[13879]
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-3
Problem
number
:
106
Date
solved
:
Friday, October 03, 2025 at 06:55:19 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=(a__1*x+a__0)*diff(diff(y(x),x),x)+(b__1*x+b__0)*diff(y(x),x)-m*b__1*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=(a1*x+a0)*D[y[x],{x,2}]+(b1*x+b0)*D[y[x],x]-m*b1*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a__0 = symbols("a__0") a__1 = symbols("a__1") b__0 = symbols("b__0") b__1 = symbols("b__1") m = symbols("m") y = Function("y") ode = Eq(-b__1*m*y(x) + (a__0 + a__1*x)*Derivative(y(x), (x, 2)) + (b__0 + b__1*x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
False