Basic Probability and Statistics, ProbMAN 1
Probabilistic Robotics Lecture 1
Random Variables and Probability Distributions
$$ \begin{aligned} \text{Joint probability: }& P(X, Y) =^{indpendent} P(X)P(Y) \\ \text{Conditional probability: }& P(X|Y) \dot{=} \frac{P(X, Y)}{P(Y)} \\ \text{Sum or Integral: }& \sum_{x \in X} p(x) = 1;\ &\int_{x \in X} \rho(x) dx = 1 \\ & \sum_{x \in X}\sum_{y \in Y} p(x, y) = 1;\ &\int_{x \in X} \int_{y \in Y} \rho(x, y) dy dx = 1 \\ \text{Bayes Rule: }& P(X|Y) = \frac{P(Y|X)P(X)}{P(Y)} \\ \text{Marginalization: }& P(X) = \sum_{y \in Y}P(X, Y);\ &\rho(x) = \int_{y \in Y} \rho(x, y) dy \\ \\ \text{Mean: }& \mu = \sum_{x \in X} x\ p(x);\ &\mu = \int_{x \in X} x\ \rho(x)\ dx \\ \text{Variance: }& \sigma^2 = \sum_{x \in X} (x - \mu)^2 p(x);\ &\sigma^2 = \int_{x \in X} (x - \mu)^2 \rho(x)\ dx \\ \end{aligned} \\ $$Convolution
We want to know the probability distribution when two random variables are added together. For example, roll two dice and add the numbers together. The probability distribution of the sum is the convolution of the two dice. $$ \begin{aligned} \text{Convolution: }& P_{X+Y}(Z) = \sum_{\xi \in X} P_X(\xi) P_Y(z - \xi) \\ & P_{X+Y}(Z) = \int_{\xi \in X} \rho_X(\xi) \rho_Y(z - \xi) d\xi \\ \text{Mean: }& \mu_{X+Y} = \mu_X + \mu_Y \\ \text{Variance: }& \sigma_{X+Y}^2 = \sigma_X^2 + \sigma_Y^2 \\ \end{aligned} $$
Gaussian Distribution
$$ \begin{aligned} \rho(x;\mu,\sigma^2) &= \frac{1}{\sqrt{2\pi}\sigma}e^{(x-\mu)^2/2\sigma^2} \\ Convolution: \rho(x; \mu_1, \sigma_1^2) * \rho(x; \mu_2, \sigma_2^2) &= \rho(x; \mu_1 + \mu_2, \sigma_1^2 + \sigma_2^2) \\ \end{aligned} $$Gaussian Integral
$$ \begin{aligned} I &= \int_{-\infty}^{\infty} e^{-1/2x^2} dx = ? \\ \\ I^2 &= (\int_{-\infty}^{\infty} e^{-1/2x^2} dx) \cdot (\int_{-\infty}^{\infty} e^{-1/2y^2} dy) \\ &= \int_{-\infty}^{\infty} \int_{-\infty}^{\infty} e^{-1/2(x^2 + y^2)} dx dy \\ let\ & x^2+y^2 = r, dxdy = rdrd\theta \\ I^2 &= \int_{r=0}^{\infty} \int_{\theta=0}^{2\pi} e^{-1/2 r^2} rdrd\theta \\ &= 2\pi \int_{r=0}^{\infty} e^{-1/2 r^2} rdr \\ let \ & u = -1/2 r^2, du = -rdr \\ I^2 &= -2\pi \int_{u=0}^{-\infty} e^{u} du \\ &= 2\pi \\ \\ I &= \sqrt{2\pi} \\ \end{aligned} $$With this result, we can using shifting and scaling to get the integral of any Gaussian distribution.