在數學 中,蒙特卡羅積分 (Monte Carlo integration)是一種使用隨機數 進行數值積分 的技術。它是一種特殊的蒙特卡羅方法 ,可對定積分 進行數值計算。其他算法通常在規則網格上評估被積函數,而[ 1] 蒙特卡洛隨機選擇被積函數評估的點。 [ 2] 該方法對於高維積分特別有用。 [ 3]
蒙特卡羅積分示意圖。在該示例中,D 是和正方形內切的圓,域E則是正方形。因為正方形的面積 (值是4) 很容易計算,所以圓的面積 (π*1.02 ) 可以通過圓內的點 (40個紅點) 與總點數 (50個點) 的比率(0.8) 來估計,得出圓面積的近似值 4*0.8 = 3.2 ≈ π。
進行蒙特卡羅積分的方法有多種,例如均勻採樣 、分層採樣 、重要性採樣 、順序蒙特卡羅 (也稱為粒子濾波器)和平均場粒子方法。
在數值積分中,梯形法則 等方法使用確定性方法 。另一方面,蒙特卡羅積分採用非確定性方法:每種實現都提供不同的結果。在蒙特卡羅中,最終結果是帶有各自誤差線的正確值的近似值,並且正確值很可能在這些誤差線內。
考慮函數
I
=
∫
Ω
f
(
x
¯
)
d
x
¯
{\displaystyle I=\int _{\Omega }f({\overline {\mathbf {x} }})\,d{\overline {\mathbf {x} }}}
其中 Ω 是
R
m
{\displaystyle \mathbb {R} ^{m}}
的一個子集,它的體積是:
V
=
∫
Ω
d
x
¯
{\displaystyle V=\int _{\Omega }d{\overline {\mathbf {x} }}}
樸素的蒙特卡羅方法是在Ω上均勻採樣點: [ 4] 給定N 個均勻樣本,
x
¯
1
,
⋯
,
x
¯
N
∈
Ω
,
{\displaystyle {\overline {\mathbf {x} }}_{1},\cdots ,{\overline {\mathbf {x} }}_{N}\in \Omega ,}
I 可以被近似為:
I
≈
Q
N
≡
V
1
N
∑
i
=
1
N
f
(
x
¯
i
)
=
V
⟨
f
⟩
.
{\displaystyle I\approx Q_{N}\equiv V{\frac {1}{N}}\sum _{i=1}^{N}f({\overline {\mathbf {x} }}_{i})=V\langle f\rangle .}
這是因為大數定律 確保以下結論成立:
lim
N
→
∞
Q
N
=
I
.
{\displaystyle \lim _{N\to \infty }Q_{N}=I.}
我們使用I 給出QN 的I 估計, QN 的誤差線(error bars)可以使用方差的無偏估計 通過樣本方差 來估計。
V
a
r
(
f
)
≡
σ
N
2
=
1
N
−
1
∑
i
=
1
N
(
f
(
x
¯
i
)
−
⟨
f
⟩
)
2
.
{\displaystyle \mathrm {Var} (f)\equiv \sigma _{N}^{2}={\frac {1}{N-1}}\sum _{i=1}^{N}\left(f({\overline {\mathbf {x} }}_{i})-\langle f\rangle \right)^{2}.}
由此可得:
V
a
r
(
Q
N
)
=
V
2
N
2
∑
i
=
1
N
V
a
r
(
f
)
=
V
2
V
a
r
(
f
)
N
=
V
2
σ
N
2
N
.
{\displaystyle \mathrm {Var} (Q_{N})={\frac {V^{2}}{N^{2}}}\sum _{i=1}^{N}\mathrm {Var} (f)=V^{2}{\frac {\mathrm {Var} (f)}{N}}=V^{2}{\frac {\sigma _{N}^{2}}{N}}.}
只要以下序列
{
σ
1
2
,
σ
2
2
,
σ
3
2
,
…
}
{\displaystyle \left\{\sigma _{1}^{2},\sigma _{2}^{2},\sigma _{3}^{2},\ldots \right\}}
是有界的,該方差就會逐漸減小到零,即 1/N 。 那麼,QN 的誤差估計就是:
δ
Q
N
≈
V
a
r
(
Q
N
)
=
V
σ
N
N
,
{\displaystyle \delta Q_{N}\approx {\sqrt {\mathrm {Var} (Q_{N})}}=V{\frac {\sigma _{N}}{\sqrt {N}}},}
我們看到,QN 的誤差是自身的
1
N
{\displaystyle {\tfrac {1}{\sqrt {N}}}}
,這是平均值的標準誤差 乘以
V
{\displaystyle V}
。該結果不依賴於積分的維數,這是蒙特卡洛積分相對於大多數指數依賴維數的確定性方法所具有的優勢。 值得注意的是,與確定性方法不同,誤差的估計不是嚴格的誤差界限;隨機抽樣可能無法揭示被積函數的所有重要特徵,從而導致誤差的低估。
雖然樸素蒙特卡羅適用於簡單的示例,但對確定性算法的改進只能通過使用特定於問題的採樣分布的算法來實現。通過適當的樣本分布,可以利用以下事實:幾乎所有高維被積函數都是非常局部化的,並且只有小子空間對積分有顯着貢獻。 [ 5] 蒙特卡羅文獻的很大一部分致力於開發改進誤差估計的策略。特別是,分層採樣(將區域劃分為子域)和重要性採樣(從非均勻分布中採樣)是此類技術的兩個示例。
請記住,以下的程序需要真正的隨機數生成器。
int i , throws = 99999 , insideCircle = 0 ;
double randX , randY , pi ;
srand ( time ( NULL ));
for ( i = 0 ; i < throws ; ++ i ) {
randX = rand () / ( double ) RAND_MAX ;
randY = rand () / ( double ) RAND_MAX ;
if ( randX * randX + randY * randY < 1 ) ++ insideCircle ;
}
pi = 4.0 * insideCircle / throws ;
from numpy import random
import numpy as np
throws = 2000
inside_circle = 0
i = 0
radius = 1
while i < throws :
# Choose random X and Y centered around 0,0
x = random . uniform ( - radius , radius )
y = random . uniform ( - radius , radius )
# If the point is inside circle, increase variable
if x ** 2 + y ** 2 <= radius ** 2 :
inside_circle += 1
i += 1
# Calculate area and print; should be closer to Pi with increasing number of throws
area = ((( 2 * radius ) ** 2 ) * inside_circle ) / throws
print ( area )
Caflisch, R. E. Monte Carlo and quasi-Monte Carlo methods. Acta Numerica . 1998, 7 : 1–49. Bibcode:1998AcNum...7....1C . S2CID 5708790 . doi:10.1017/S0962492900002804 .
Weinzierl, S. Introduction to Monte Carlo methods. 2000. arXiv:hep-ph/0006269 .
Press, W. H.; Farrar, G. R. Recursive Stratified Sampling for Multidimensional Monte Carlo Integration. Computers in Physics. 1990, 4 (2): 190. Bibcode:1990ComPh...4..190P . doi:10.1063/1.4822899 .
Lepage, G. P. A New Algorithm for Adaptive Multidimensional Integration. Journal of Computational Physics . 1978, 27 (2): 192–203. Bibcode:1978JCoPh..27..192L . doi:10.1016/0021-9991(78)90004-9 .
Lepage, G. P. VEGAS: An Adaptive Multi-dimensional Integration Program. Cornell Preprint CLNS 80-447. 1980.
Hammersley, J. M.; Handscomb, D. C. Monte Carlo Methods . Methuen. 1964. ISBN 978-0-416-52340-9 .
Kroese, D. P. ; Taimre, T.; Botev, Z. I. Handbook of Monte Carlo Methods. John Wiley & Sons. 2011.
Press, WH; Teukolsky, SA; Vetterling, WT; Flannery, BP. Numerical Recipes: The Art of Scientific Computing 3rd. New York: Cambridge University Press. 2007. ISBN 978-0-521-88068-8 .
MacKay, David . chapter 4.4 Typicality & chapter 29.1 (PDF) . Information Theory, Inference and Learning Algorithms . Cambridge University Press. 2003 [2024-03-15 ] . ISBN 978-0-521-64298-9 . MR 2012999 . (原始內容存檔 於2016-02-17).
Newman, MEJ; Barkema, GT. Monte Carlo Methods in Statistical Physics . Clarendon Press. 1999.
Robert, CP; Casella, G. Monte Carlo Statistical Methods 2nd. Springer. 2004. ISBN 978-1-4419-1939-7 .