is a constant, and so can be folded into Solution of Bessel Differential Equation
3 views (last 30 days)
Show older comments
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.
0 Comments
Answers (1)
Walter Roberson
on 24 Feb 2022
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)
generalsol = dsolve(ODE2)
Note that
is a constant, and so can be folded into
and
is a constant, and so can be folded into 0 Comments
See Also
Categories
Find more on Bessel functions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
