Can the given equation be transformed to the Bessel equation?. If yes, how it can be transformed then?.
Y''(x)+a*Y'(x)+b^(2)*e^(2ax)Y(x)=0
Asked
Active
Viewed 146 times
1
7444_S
- 21
- 1
1 Answers
1
The only way I can see is to let a->1/x
ode = Y''[x] + a Y'[x] + b^2 E^(2 a x) Y[x] == 0 /. a -> 1/x
(* E^2 b^2 Y[x] + Y''[x] + Y'[x]/x == 0 *)
and we get Bessel's eqn of order zero.
DSolve[ode, Y[x], x]
{{Y[x] -> C[1] BesselJ[0, b E x] + C[2] BesselY[0, b E x]}}
If a is to remain a constant, this, of course, won't work.
Bill Watts
- 8,217
- 1
- 11
- 28
exp(2 a x)makes it not possible to apply the standard method to do this transformation. Are you sure this term is there in the original ode? – Nasser Feb 22 '22 at 05:32DSolveworks on it as is and solves it. – Nasser Feb 22 '22 at 06:26DSolvedoes? It does not for me. Can you show what you tried and the code? On my system V 13.01 it gives this
But if you want to transform the ode to Bessel form first. then may be asking at the math form would be better in this case as suggested above.
– Nasser Feb 22 '22 at 06:45