Mathematicaで確率実験を行う
Mathematicaは確率と分布を操作するための非常に快適なフレームワークを提供します-適切な制限の主な問題は対処されていますが、この質問を使用してこれをより明確にし、参考として役立つと思います。
実験を繰り返し可能にして、好みに合わせていくつかのプロットオプションを定義しましょう。
SeedRandom["Repeatable_151115"];
$PlotTheme = "Detailed";
SetOptions[Plot, Filling -> Axis];
SetOptions[DiscretePlot, ExtentSize -> Scaled[0.5], PlotMarkers -> "Point"];
パラメトリック分布の操作
これで、1つのイベントの漸近分布を定義できます。これは、(フェア)コインの回のスローにおけるヘッドの比率です。n個πn
distProportionTenCoinThrows = With[
{
n = 10, (* number of coin throws *)
p = 1/2 (* fair coin probability of head*)
},
(* derive the distribution for the proportion of heads *)
TransformedDistribution[
x/n,
x \[Distributed] BinomialDistribution[ n, p ]
];
With[
{
pr = PlotRange -> {{0, 1}, {0, 0.25}}
},
theoreticalPlot = DiscretePlot[
Evaluate @ PDF[ distProportionTenCoinThrows, p ],
{p, 0, 1, 0.1},
pr
];
(* show plot with colored range *)
Show @ {
theoreticalPlot,
DiscretePlot[
Evaluate @ PDF[ distProportionTenCoinThrows, p ],
{p, 0.4, 0.6, 0.1},
pr,
FillingStyle -> Red,
PlotLegends -> None
]
}
]
これにより、比率の離散分布のプロットが得られます。
分布をすぐに使用して、と確率を計算できます:Pr[Pr[0.4≤π≤0.6|π∼B(10,12)]Pr[0.4<π<0.6|π∼B(10,12)]
{
Probability[ 0.4 <= p <= 0.6, p \[Distributed] distProportionTenCoinThrows ],
Probability[ 0.4 < p < 0.6, p \[Distributed] distProportionTenCoinThrows ]
} // N
{0.65625、0.246094}
モンテカルロ実験を行う
1つのイベントの分布を使用して、そこから繰り返しサンプリングすることができます(モンテカルロ)。
distProportionsOneMillionCoinThrows = With[
{
sampleSize = 1000000
},
EmpiricalDistribution[
RandomVariate[
distProportionTenCoinThrows,
sampleSize
]
]
];
empiricalPlot =
DiscretePlot[
Evaluate@PDF[ distProportionsOneMillionCoinThrows, p ],
{p, 0, 1, 0.1},
PlotRange -> {{0, 1}, {0, 0.25}} ,
ExtentSize -> None,
PlotLegends -> None,
PlotStyle -> Red
]
]
これを理論的/漸近的分布と比較すると、すべてがほぼ以下に当てはまることがわかります。
Show @ {
theoreticalPlot,
empiricalPlot
}