Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
0

integral containing products of bessel functions

asked 7 years ago

RieszRepresent gravatar image

I am trying to find a closed form expression of an integral containing a product of bessel functions. Sage returns my command instead of a solution. Any help is appreciated. My code is below. I am solving this on a free CoCalc server.

phi, l, R, r_bar= var('phi l R r_bar')
phi = bessel_J(0, l*R) - (bessel_J(0,l*r_bar)*bessel_Y(0,l*R))/(bessel_Y(0,l*r_bar))
f = R*phi*phi
integrate(f, R)
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 7 years ago

mforets gravatar image

updated 7 years ago

in v.8.0.beta9 and in v.7.6., i'm getting:

sage: phi, l, R, r_bar= var('phi l R r_bar')
sage: phi = bessel_J(0, l*R) - (bessel_J(0,l*r_bar)*bessel_Y(0,l*R))/(bessel_Y(0,l*r_bar))
sage: f = R*phi*phi
sage: ans = integrate(f, R, algorithm='sympy'); ans   # coffee break
1/2*R^2*bessel_J(1, R*l)^2 + 1/2*R^2*bessel_J(0, R*l)^2 + 1/2*R^2*bessel_J(0, l*r_bar)^2*bessel_Y(1, R*l)^2/bessel_Y(0, l*r_bar)^2 + 1/2*R^2*bessel_J(0, l*r_bar)^2*bessel_Y(0, R*l)^2/bessel_Y(0, l*r_bar)^2 - R^2*bessel_J(1, R*l)*bessel_J(0, l*r_bar)*bessel_Y(1, R*l)/bessel_Y(0, l*r_bar) - R^2*bessel_J(0, R*l)*bessel_J(0, l*r_bar)*bessel_Y(0, R*l)/bessel_Y(0, l*r_bar)

and view(factor(ans)) is

(J0(lrbar)2Y1(Rl)2+J0(lrbar)2Y0(Rl)22J1(Rl)J0(lrbar)Y1(Rl)Y0(lrbar)2J0(Rl)J0(lrbar)Y0(Rl)Y0(lrbar)+J1(Rl)2Y0(lrbar)2+J0(Rl)2Y0(lrbar)2)R22Y0(lrbar)2

sanity check:

sage: numerical_integral(f.subs(l=1, r_bar=1), 0.1, 1)
(9.285246004277859, 1.0308693903258014e-13)
sage: N(ans.subs(R=1, l=1, r_bar=1) - ans.subs(R=0.1, l=1, r_bar=1))
9.28524600427786
Preview: (hide)
link

Comments

Selecting sympy gives me an answer unlike the default of maxima. Thank you!

RieszRepresent gravatar imageRieszRepresent ( 7 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 7 years ago

Seen: 433 times

Last updated: Jun 09 '17