Solution of Bessel Differential Equation

How can I get the general solution in this way? My command's result appears like the integer order of the Bessel differential equation.
ODE2 := diff(T[1](t), t, t) + 2*diff(T[1](t), t)/t + (Omega^2/(a^2*t^(4/3)) - 20/(9*t^2))*T[1](t)
generalsol := dsolve(ODE2, T[1](t))
Thank you.

Réponses (1)

syms T_1(t)
syms a Omega positive
ODE2 = diff(T_1(t), t, t) + 2*diff(T_1(t), t)/t + (Omega^2/(a^2*t^(4/3)) - 20/(9*t^2))*T_1(t)
ODE2 = 
generalsol = dsolve(ODE2)
generalsol = 
Note that is a constant, and so can be folded into and

Catégories

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by