Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Very basic review of some statistics terms

Engineering Testing and Measurements

Review of basic statistics

  1. Population -- the entire collection of measurements, not all of which will be analyzed statistically. Some variable x x, anything that is measurable, such as a length, time, voltage, current, resistance, etc.

  2. Sample -- a subset of the population that is analyzed statistically. A sample consists of nn measurements: x1,x2,x3,...,xnx_1,x_2, x_3,...,x_n

  3. Statistic -- a numerical attribute of the sample (e.g., mean, median, standard deviation).

  4. Population mean is denoted as: μ\mu

  5. Sample mean is an arithmetic average:

xavg=x=1ni=1nxix_{\mathrm{avg}}=\overline{x}=\frac{1}{n}\sum_{i=1}^{n}x_{i}

Deviations

  • Deviation is the difference between a particular measurement and the mean, d=xix d = x_i - \overline{x}

  • Deviation of one particular measurement is the same as the precision error or random error of that measurement.

  • Deviation is not the same as inaccuracy - difference between a particular measurement and the true value

  • Because of bias (systematic) error, xtrue x_{true} is often not even known, and the mean is not equal to xtruex_{true} as there are bias errors.

  • Average deviation -- averaging all the deviations is zero, d=0 \overline{d} = 0

plainSample standard deviation

  • Average absolute deviation -- a better measure of deviation is the average absolute deviation (also called the average positive error), defined as the average of the absolute value of each deviation.

    d=1ni=1ndi\left|\overline{d}\right|=\frac{1}{n}\sum_{i=1}^{n}\left|d_{i}\right|
  • Sample standard deviation -- measure of how much deviation or scatter is in the data is obtained by calculating the sample standard deviation. For $ n measurements:

    S=i=1ndi2n1=i=1n(xix)2n1S=\sqrt{\frac{\sum_{i=1}^{n}d_{i}^{2}}{n-1}}=\sqrt{\frac{\sum_{i=1}^{n}(x_{i}-\overline{x})^{2}}{n-1}}

    \par

  • Notice the use of: n1n - 1, it means we have only n1n-1 degrees of freedom as one degree is taken by the x\overline{x}