主題
Search

Beta 函式


BetaFunction

beta 函式 B(p,q) 是勒讓德和惠特克與沃森 (1990) 對 beta 積分(也稱為第一類尤拉積分)使用的名稱。它由下式定義:

 B(p,q)=(Gamma(p)Gamma(q))/(Gamma(p+q))=((p-1)!(q-1)!)/((p+q-1)!).
(1)

beta 函式 B(a,b)Wolfram 語言 中實現為Beta[a, b]。

為了推導 beta 函式的積分表示,將兩個階乘的乘積寫成:

 m!n!=int_0^inftye^(-u)u^mduint_0^inftye^(-v)v^ndv.
(2)

現在,令 u=x^2v=y^2,則

m!n!=4int_0^inftye^(-x^2)x^(2m+1)dxint_0^inftye^(-y^2)y^(2n+1)dy
(3)
=int_(-infty)^inftyint_(-infty)^inftye^(-(x^2+y^2))|x|^(2m+1)|y|^(2n+1)dxdy.
(4)

使用 x=rcosthetay=rsintheta 變換到 極座標

m!n!=int_0^(2pi)int_0^inftye^(-r^2)|rcostheta|^(2m+1)|rsintheta|^(2n+1)rdrdtheta
(5)
=int_0^inftye^(-r^2)r^(2m+2n+3)drint_0^(2pi)|cos^(2m+1)thetasin^(2n+1)theta|dtheta
(6)
=4int_0^inftye^(-r^2)r^(2m+2n+3)drint_0^(pi/2)cos^(2m+1)thetasin^(2n+1)thetadtheta
(7)
=2(m+n+1)!int_0^(pi/2)cos^(2m+1)thetasin^(2n+1)thetadtheta.
(8)

然後 beta 函式定義為:

B(m+1,n+1)=2int_0^(pi/2)cos^(2m+1)thetasin^(2n+1)thetadtheta
(9)
=(m!n!)/((m+n+1)!).
(10)

重寫自變數,得到 beta 函式的常用形式:

B(p,q)=(Gamma(p)Gamma(q))/(Gamma(p+q))
(11)
=((p-1)!(q-1)!)/((p+q-1)!).
(12)

根據對稱性,

 B(p,q)=B(q,p).
(13)

一般三角形式為:

 int_0^(pi/2)sin^nxcos^mxdx=1/2B(1/2(n+1),1/2(m+1)).
(14)

透過令 u=cos^2theta,方程 (14) 可以轉換為關於多項式的積分:

B(m+1,n+1)=(m!n!)/((m+n+1)!)
(15)
=int_0^1u^m(1-u)^ndu
(16)
B(m,n)=(Gamma(m)Gamma(n))/(Gamma(m+n))
(17)
=int_0^1u^(m-1)(1-u)^(n-1)du.
(18)

對於任何 z_1,z_2R[z_1],R[z_2]>0

 B(z_1,z_2)=B(z_2,z_1)
(19)

(Krantz 1999,第 158 頁)。

為了將其轉換為可用於推導 勒讓德倍增公式 的形式,令 x=sqrt(u),則 u=x^2du=2xdx,以及

B(m,n)=int_0^1x^(2(m-1))(1-x^2)^(n-1)(2xdx)
(20)
=2int_0^1x^(2m-1)(1-x^2)^(n-1)dx.
(21)

為了將其轉換為可用於開發 貝塞爾函式超幾何函式 的積分表示的形式,令 u=x^2/(1-x^2),則

 B(m+1,n+1)=int_0^infty(u^mdu)/((1+u)^(m+n+2)).
(22)

beta 函式的導數由下式給出:

d/(da)B(a,b)=B(a,b)[psi_0(a)-psi_0(a+b)]
(23)
d/(db)B(a,b)=B(a,b)[psi_0(b)-psi_0(a+b)]
(24)
(d^2)/(db^2)B(a,b)=B(a,b){[psi_0(b)-psi_0(a+b)]^2+psi_1(b)-psi_1(a+b)},
(25)
(d^2)/(dadb)B(a,b)=B(a,b){[psi_0(a)-psi_0(a+b)]×[psi_0(b)-psi_0(a+b)]-psi_1(a+b)},
(26)

其中 psi_n(x)多伽瑪函式

可以使用 高斯乘法公式 推匯出各種恆等式:

B(np,nq)=(Gamma(np)Gamma(nq))/(Gamma(n(p+q)))
(27)
=n^(-nq)(B(p,q)B(p+1/n,q)...B(p+(n-1)/n,q))/(B(q,q)B(2q,q)...B((n-1)q,q)).
(28)

其他恆等式包括:

B(p,q+1)=(Gamma(p)Gamma(q+1))/(Gamma(p+q+1))
(29)
=q/p(Gamma(p+1)Gamma(q))/(Gamma((p+1)+q))
(30)
=q/pB(p+1,q)
(31)
 B(p,q)=B(p+1,q)+B(p,q+1)
(32)
 B(p,q+1)=q/(p+q)B(p,q).
(33)

如果 n 是一個正整數,則

 B(p,n+1)=(1·2...n)/(p(p+1)...(p+n)).
(34)

此外,

 B(p,p)B(p+1/2,p+1/2)=pi/(2^(4p-1)p)
(35)
 B(p,q)B(p+q,r)=B(q,r)B(q+r,p).
(36)

beta 函式也由以下乘積給出:

 B(x,y)=(x+y)/(xy)product_(k=1)^infty(1+(x+y)/k)/((1+x/k)(1+y/k))
(37)

(Andrews et al. 1999,第 8 頁)。

Gosper 給出了通用公式:

 product_(i=0)^(2n)B(i/(2n+1)+a,i/(2n+1)+b) 
=((2n+1)^((2n+1)/2)pi^nB(n,1/2[(b+a)(2n+1)+1])B(a(2n+1),b(2n+1)))/((n-1)!)
(38)

對於奇數 n,以及

 product_(i=0)^(2n-1)B(i/(2n)+a,i/(2n)+b) 
=(n^npi^nB(n,2(a+b)n)B(2an,2bn))/(2^(2(a+b)n-n-1)(n-1)!B((a+b)n,(a+b+1)n)),
(39)

這是 gamma 函式 的類似恆等式的直接結果。將 n=1n=2 代入上述公式,得到特殊情況:

 B(a,b)B(a+1/3,b+1/3)B(a+2/3,b+2/3)=(6pisqrt(3)B(3a,3b))/(1+3(a+b))
(40)
 B(a,b)B(a+1/4,b+1/4)B(a+1/2,b+1/2)B(a+3/4,b+3/4) 
=(2^(3-4(a+b))pi^2B(4a,4b))/((a+b)[1+4(a+b)]B(2(a+b),2(a+b+1))).
(41)

另請參閱

Beta 積分中心 Beta 函式狄利克雷 Beta 函式狄利克雷積分Gamma 函式不完全 Beta 函式正則化 Beta 函式

相關 Wolfram 網站

http://functions.wolfram.com/GammaBetaErf/Beta/

使用 探索

參考文獻

Abramowitz, M. and Stegun, I. A. (Eds.). "Beta Function" and "Incomplete Beta Function." §6.2 and 6.6 in Handbook of Mathematical Functions with Formulas, Graphs, and Mathematical Tables, 9th printing. New York: Dover, pp. 258 and 263, 1972.Andrews, G. E.; Askey, R.; and Roy, R. Special Functions. Cambridge, England: Cambridge University Press, 1999.Bailey, D. H.; Borwein, P. B.; and Plouffe, S. "On the Rapid Computation of Various Polylogarithmic Constants." Math. Comput. 66, 903-913, 1997.Arfken, G. "The Beta Function." §10.4 in Mathematical Methods for Physicists, 3rd ed. Orlando, FL: Academic Press, pp. 560-565, 1985.Erdélyi, A.; Magnus, W.; Oberhettinger, F.; and Tricomi, F. G. "The Beta Function." §1.5 in Higher Transcendental Functions, Vol. 1. New York: Krieger, pp. 9-13, 1981.Jeffreys, H. and Jeffreys, B. S. "The Beta Function." §15.02 in Methods of Mathematical Physics, 3rd ed. Cambridge, England: Cambridge University Press, pp. 463-464, 1988.Koepf, W. Hypergeometric Summation: An Algorithmic Approach to Summation and Special Function Identities. Braunschweig, Germany: Vieweg, pp. 6-9, 1998.Krantz, S. G. "The Beta Function." §13.1.11 in Handbook of Complex Variables. Boston, MA: Birkhäuser, pp. 157-158, 1999.Morse, P. M. and Feshbach, H. Methods of Theoretical Physics, Part I. New York: McGraw-Hill, p. 425, 1953.Press, W. H.; Flannery, B. P.; Teukolsky, S. A.; and Vetterling, W. T. "Gamma Function, Beta Function, Factorials, Binomial Coefficients" and "Incomplete Beta Function, Student's Distribution, F-Distribution, Cumulative Binomial Distribution." §6.1 and 6.2 in Numerical Recipes in FORTRAN: The Art of Scientific Computing, 2nd ed. Cambridge, England: Cambridge University Press, pp. 206-209 and 219-223, 1992.Spanier, J. and Oldham, K. B. "The Incomplete Beta Function B(nu;mu;x)." Ch. 58 in An Atlas of Functions. Washington, DC: Hemisphere, pp. 573-580, 1987.Whittaker, E. T. and Watson, G. N. A Course of Modern Analysis, 4th ed. Cambridge, England: Cambridge University Press, 1990.

在 上引用

Beta 函式

請引用本文為

Weisstein, Eric W. "Beta 函式。" 來自 Web 資源。https://mathworld.tw/BetaFunction.html

主題分類