Questions tagged [normal-distribution]

This tag is for questions on the Gaussian, or normal probability distribution, which may include multi-dimensional normal distribution. The normal distribution is the most common type of distribution assumed in technical stock market analysis and in other types of statistical analyses.

Normal distribution, also known as the Gaussian distribution, is a probability distribution that is symmetric about the mean, showing that data near the mean are more frequent in occurrence than data far from the mean.

Graphically, normal distribution will appear as a bell curve.

enter image description here

However, many other distributions are bell-shaped (such as the Cauchy, Student's $~t-~$, and logistic distributions).

Probability density function: The general formula for the probability density function of the normal distribution is \begin{equation*} P(x)=\frac{1}{\sigma\sqrt{2\pi}}e^{-~\frac{(x-\mu)^2}{(2\sigma^2)}},~x\in (-\infty,\infty). \end{equation*}

where

  • $~\mu~$ is the mean or expectation of the distribution (and also its median and mode),
  • $~\sigma~$ is the standard deviation, and
  • $~\sigma ^{2}~$ is the variance.

The case where $~μ = 0~$ and $~σ = 1~$ is called the standard normal distribution. The equation for the standard normal distribution is

\begin{equation*} P(x)=\frac{1}{\sqrt{2\pi}}e^{-~\frac{x^2}{2}},~x\in (-\infty,\infty). \end{equation*}

Since the general form of probability functions can be expressed in terms of the standard distribution, all subsequent formulas in this section are given for the standard form of the function.

Applications: The normal distribution is useful because of the central limit theorem. In its most general form, under some conditions (which include finite variance), it states that averages of samples of observations of random variables independently drawn from independent distributions converge in distribution to the normal, that is, they become normally distributed when the number of observations is sufficiently large. Physical quantities that are expected to be the sum of many independent processes (such as measurement errors) often have distributions that are nearly normal. Moreover, many results and methods (such as propagation of uncertainty and least squares parameter fitting) can be derived analytically in explicit form when the relevant variables are normally distributed.

References:

https://en.wikipedia.org/wiki/Normal_distribution

http://mathworld.wolfram.com/NormalDistribution.html

7628 questions
35
votes
5 answers

Product of Two Multivariate Gaussians Distributions

Given two multivariate gaussians distributions, given by mean and covariance, $G_1(x; \mu_1,\Sigma_1)$ and $G_2(x; \mu_2,\Sigma_2)$, what are the formulae to find the product i.e. $p_{G_1}(x) p_{G_2}(x)$ ? And if one was looking to implement this…
14
votes
2 answers

Why don't we allow the canonical Gaussian distribution in infinite dimensional Hilbert space?

I'm looking at Gaussian distributions in infinite-dimensional Hilbert space, and the sources I've seen so far say that the covariance matrix has to be of trace class (i.e. the trace must be finite). Amongst other things this condition rules out the…
14
votes
7 answers

A Mathematical Paradox About Probabilities

So - I am no math genius but I do have shower thoughts. And there is one thought about normal distribution that I just couldn't let go. I converted it into a little story to visualize it a little better. Let's see if it makes sense and if it really…
8
votes
2 answers

Mean Absolute Deviation of normal distribution

The Mean Absolute Deviation of the normal distribution is simply $$\sqrt{\frac{2}{\pi}}\sigma,$$ where $\sigma$ is the standard deviation of the normal distribution. (Wikipedia, Mathworld.) How do I prove this?
user46234
8
votes
3 answers

Triangular vs Normal distribution

I'm trying to approximate a standard normal distribution with a triangular distribution. What parameters of the triangular distribution (min, max and mode) are more suitable? Thank you
user257006
8
votes
1 answer

Distribution of sum of product-normal distributions.

I know that the distribution of a product $Z=XY$ of two normally distributed variates $X$ and $Y$ with zero means is the product normal distribution [Mathworld]. What is the distribution of $Q=\sum Z$? By generating multiple samples of $X$ and $Y$,…
7
votes
1 answer

Abramowitz and Stegun approximation for cumulative normal distribution

(Note: I know this looks like a programming question, but I'm OK with the programming part and just want to understand the mathematics.) I found a bit of code to calculate the integral of the normal bell curve that I wrote 2 years ago, and I don't…
7
votes
1 answer

Tail inequalities for multivariate normal distribution

There exists an closed expression for univariate normal CDF, together with simpler upper-bounds under the form, $$ \Pr\big[X > c\big] \leq \frac{1}{2}\exp\Big(\frac{-c^2}{2}\Big)~, $$ $$\text{where } X \sim \mathcal{N}(0,1)~.$$ Even if there are…
Emile
  • 396
6
votes
1 answer

Can the product of two non-independent Gaussians be Gaussian?

We recently discussed this: Is the product of two Gaussian random variables also a Gaussian? What was established was that in nontrivial cases (i.e., ruling out zero-variance Gaussians, which are Dirac delta functions), the product of independent…
user13618
5
votes
2 answers

Standard normal distribution hazard rate

Is the hazard rate of the standard normal distribution convex? Can you give a reference?
Mehmet
  • 77
4
votes
1 answer

Quantifying difference between two frequency distributions

I'm trying to find a percentage to describe how close a generated frequency distribution is to an ideal distribution, but am having a total blank. Basically I need to rate distributions So say I have the below frequency distributions for a sample…
Tristan
  • 153
4
votes
1 answer

Suppose the heights of a population of $3,000$ adult penguins are approximately normally distributed with a mean of $65$ cm and ...

I would like to check myself if following my answer is correct: let us consider following problem: Suppose the heights of a population of $3,000$ adult penguins are approximately normally distributed with a mean of $65$ centimeters and a standard…
giorgi
  • 357
4
votes
1 answer

Normal curve 1.5 standard deviations

For a normal curve, how much of the area lies within 1.5 standard deviations of the mean? I already know about the 68–95–99.7 rule, and see that it should be between 68% and 95%. I also know that it should be closer to 95%, so I estimate it to be…
KingLogic
  • 1,441
4
votes
1 answer

How to plot standard deviation rings of a bivariate normal distribution?

I'm working on a project right now where I have Gaussian distributions, and I want to create a graphic that represents them. I'm not sure how to generate the ellipse that represents say 1 standard deviation away from the mean. How do I convert the…
4
votes
2 answers

Log - Normal Distribution

could someone explain why the log-normal distribution's mean is $$ e^{u + {\sigma^2\over2} } $$ and the variance is $$ (e^{\sigma^2} -1)e^{{2u} + \sigma^2} $$ I'm not too sure how these are derived..
1
2 3
23 24