The Bernoulli distribution is the discrete probability distribution of a random variable which takes a binary output: $1$ with probability $p$, and $0$ with probability $(1-p)$.
\[ \begin{equation} p(x) = p^x (1-p)^x, where\; x = \{0, 1\} \end{equation} \] \[ \begin{equation} E(x) = p, \; V(x) = p(1 - p) \end{equation} \]
Example: flipping a coin one time.
Example: flipping a coin $n$ times. What is the probability of getting $k$ heads?
The Poisson distribution can be derived as the limit of a binomial distribution as the number of trials, $n$, approaches infinity and the probability of success on each trial, $p$, approaches zero in such a way that $np = \lambda$. In other word the Poisson frequency function is used to approximate binomial probabilities for large $n$ and small $p$.
\[ \begin{equation} p(k) = -\frac{\lambda^k}{k!}e^{\lambda} \end{equation} \] \[ \begin{equation} E(k) = \lambda, \; V(x) = \lambda \end{equation} \]
A Poisson Process is a model for a series of discrete event where the average time between events is known, but the exact timing of events is random. The arrival of an event is independent of the event before. (Poisson random variable also applies to disjoint regions of space.)
We observe $k$ events in a time period given the length of the period and the average events per time $\lambda$ is an expected number of events in interval (or region of space):
\[ \begin{equation} p(k_{events\_in\_interval}) = -\frac{\lambda^k}{k!}e^{\lambda} \end{equation} \] \[ \begin{equation} \lambda = \frac{events}{time}interval \end{equation} \]
Examples:
Probability density function:
\[ \begin{equation} p(x|\mu, \sigma^{2}) = \frac{1} {\sigma\sqrt{2\pi}} e^{-(x - \mu)^{2}/(2\sigma^{2}) } \end{equation} \]
\[ \begin{equation} E(x) = \mu, \; V(x) = \sigma \end{equation} \] The notation $N(\mu, \sigma^2)$ means normally distributed with mean $\mu$ and variance $\sigma$.
Multivariate version:
\[ \begin{equation} p(x|\mu, \Sigma) = \frac{1} {(2\pi)^{d/2}\sqrt\Sigma} e^{-(x - \mu)^T \Sigma (x - \mu) } \end{equation} \]
\[ \begin{equation} E(x) = \mu, \; Cov(x) = \Sigma \end{equation} \]