正規分布は、同じ道具を用いて同じ物理学的な対象物を繰り返し測定したときの値の分布であり、値の散布 度は確率変動のみとなる。
平均と標準偏差によって記述できる。
![]() |
(11.1) |
![]() |
(11.2) |
Args: (x) Returns the value of the standard normal distribution function at X. Vectorized.
Args: (x) Returns the density at X of the standard normal distribution. Vectorized.
Args (p) Returns the P-th quantile of the standard normal distribution. Vectorized.
Args: (n) Returns a list of N standard normal random numbers. Vectorized.
2変量正規乱数 n:発生される乱数の個数 rho:相関係数
The `utpn(x,m,s)' function uses a normal (Gaussian) distribution with mean `m' and standard deviation `s'. It is the probability that such a normal-distributed random variable would exceed `x'.
hist(rnorm(1000, mean=0, sd=1))
標準正規分布から独立に抽出したn個の標本を2乗したものの合計は、自由度nのχ2乗分布に従う。
ガンマ関数
,自由度 df としたとき、t分布の確率密度関数 f(x) は、
母集団の標準偏差
を用いて標準化する。
![]() |
(11.4) |
その値 z は、標準正規分布に従う。
標本集団の標準偏差 s を用いて標準化する。
![]() |
(11.5) |
その値 z は、自由度 n - 1 の t分布に従う。
確率変数の自然対数が正規分布をとるものをいう。
分布の非対称性を表す一つの指標である。分布が左右対称であれば歪度は 0 となるが、歪度が 0 であるからといって逆は真ではない。
分布の尖り具合を表す指標である。
正規分布からの歪みを表す指標となる。目安として 8.0 から 20.0 以上をもって極めて Kurtosis が高いと判断する。
Akimichi Tatsukawa