Skip to content
Sahithyan's S2
Sahithyan's S2 — Methods of Mathematics

Discrete Distribution

For all the definition below:

  • NN is the population size.
  • nn is the sample size.

Parameters

Mean

Average of the all values in the entire population. Usually unknown. Denoted by μ\mu.

μ=1Ni=1Nxi\mu = \frac{1}{N} \sum_{i=1}^N x_i

Variance

Measure of the spread of the observed values. Denoted by σ2\sigma^2.

σ2=1Ni=1N(xiμ)2\sigma^2 = \frac{1}{N} \sum_{i=1}^N (x_i - \mu)^2

Standard Deviation

Square root of the variance. Denoted by σ\sigma.

Skewness

γ1=E[(Xμ)3]σ3\gamma_1 = \frac{\mathbb{E}[(X - \mu)^3]}{\sigma^3}

Kurtosis

K=E[(Xμ)4]σ4K=\frac{\mathbb{E}\left[ (X-\mu)^4 \right]}{\sigma^4}

Sample Parameters

Sample mean

Average of the observed values. Denoted by xˉ\bar{x}.

xˉ=1ni=1nxi\bar{x} = \frac{1}{n} \sum_{i=1}^n x_i

Sample variance

Denoted by s2s^2.

s2=1n1i=1n(xixˉ)2s^2 = \frac{1}{n-1} \sum_{i=1}^n (x_i - \bar{x})^2

Here sample mean xˉ\bar{x} is used instead of μ\mu, which underestimates the variance. n1n-1 is used instead of nn to correct this bias, which is called Bessel’s correction. This correction makes it an unbiased estimator.

Sample covariance

cov(X,Y)=1n1i=1n(xixˉ)(yiyˉ)\mathrm{cov}(X, Y) = \frac{1}{n-1} \sum_{i=1}^n (x_i - \bar{x})(y_i - \bar{y})

Sample skewness

g1=n(n1)(n2)i=1n(xixˉs)3g_1 = \frac{n}{(n-1)(n-2)} \sum_{i=1}^n \left(\frac{x_i - \bar{x}}{s}\right)^3