Internal
problem
ID
[11281]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
2,
linear
second
order
Problem
number
:
1302
Date
solved
:
Sunday, March 30, 2025 at 08:07:49 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=A2*(a*x+b)^2*diff(diff(y(x),x),x)+A1*(a*x+b)*diff(y(x),x)+A0*(a*x+b)*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=A0*(b + a*x)*y[x] + A1*(b + a*x)*D[y[x],x] + A2*(b + a*x)^2*D[y[x],{x,2}] == 0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") A0 = symbols("A0") A1 = symbols("A1") A2 = symbols("A2") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(A0*(a*x + b)*y(x) + A1*(a*x + b)*Derivative(y(x), x) + A2*(a*x + b)**2*Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
False