Why is the Gaussian so pervasive in mathematics? - MathOverflow most recent 30 from http://mathoverflow.net2013-05-18T21:47:30Zhttp://mathoverflow.net/feeds/question/40268http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://mathoverflow.net/questions/40268/why-is-the-gaussian-so-pervasive-in-mathematicsWhy is the Gaussian so pervasive in mathematics?Randy Qian2010-09-28T05:06:52Z2012-11-14T09:17:26Z
<p>This is a heuristic question that I think was once asked by Serge Lang. The gaussian: $e^{-x^2}$ appears as the fixed point to the Fourier transform, in the punchline to the central limit theorem, as the solution to the heat equation, in a very nice proof of the Atiyah-Singer index theorem etc. Is this an artifact of the techniques (such as the Fourier Transform) that people like use to deal with certain problems or is this the tip of some deeper platonic iceberg?</p>
http://mathoverflow.net/questions/40268/why-is-the-gaussian-so-pervasive-in-mathematics/40288#40288Answer by Bjørn Kjos-Hanssen for Why is the Gaussian so pervasive in mathematics?Bjørn Kjos-Hanssen2010-09-28T09:01:02Z2010-09-28T17:13:33Z<p><em>The sum of two independent normal random variables is again normal</em>, i.e., the shape of the distribution is unchanged under addition except for stretching and scaling. Moreover, the normal distribution is unique among distributions with finite variance in having this property. Many phenomena in nature come from adding together various independent or almost independent terms. Therefore, we would expect the normal distribution to show up a lot in nature-inspired mathematics.</p>
http://mathoverflow.net/questions/40268/why-is-the-gaussian-so-pervasive-in-mathematics/40371#40371Answer by Kevin O'Bryant for Why is the Gaussian so pervasive in mathematics?Kevin O'Bryant2010-09-28T19:13:49Z2010-09-28T19:23:47Z<p>I recently came across a strange and beautiful connection between the Gaussian $e^{-x^2}$ and the method of least squares. It turns out that the square in $e^{-x^2}$ and the square in ``least squares'' is the same square.</p>
<p>Let $(x_i,y_i)$ (with $1\leq i \leq n$) be the data set, and assume that for each $x$, the $y$'s are normally distributed with mean $\mu(x)=\alpha x+\beta$ and variance $\sigma^2$. Then, the likelihood of generating our data (assuming that the data points are independent) is
$$\prod_{i=1}^n \frac{1}{\sqrt{2\pi \sigma^2}} \exp\left(-\frac{(y_i-\mu(x_i))^2}{2\sigma^2}\right)
=\left(\frac{1}{\sqrt{2\pi \sigma^2}}\right)^n
\exp\left( \frac{-1}{2\sigma^2} \sum_{i=1}^n (y_i - \alpha x+\beta)^2 \right)$$
We would obviously want to choose the parameters $\alpha,\beta$ so that the likelihood is maximized, and this is accomplished by minimizing $$\sum_{i=1}^n (y_i - \alpha x+\beta)^2.$$ In other words, the least squares approximation is the one that makes the data set most likely to happen.</p>
http://mathoverflow.net/questions/40268/why-is-the-gaussian-so-pervasive-in-mathematics/40382#40382Answer by Terry Tao for Why is the Gaussian so pervasive in mathematics?Terry Tao2010-09-28T20:39:42Z2010-09-28T20:47:01Z<p>Quadratic (or bilinear) forms appear naturally throughout mathematics, for instance via inner product structures, or via dualisation of a linear transformation, or via Taylor expansion around the linearisation of a nonlinear operator. The Laplace-Beltrami operator and similar second-order operators can be viewed as differential quadratic forms, for instance.</p>
<p>A Gaussian is basically the multiplicative or exponentiated version of a quadratic form, so it is quite natural that it comes up in multiplicative contexts, especially on spaces (such as Euclidean space) in which a natural bilinear or quadratic structure is already present.</p>
<p>Perhaps the one minor miracle, though, is that the Fourier transform of a Gaussian is again a Gaussian, although once one realises that the Fourier kernel is also an exponentiated bilinear form, this is not so surprising. But it does amplify the previous paragraph: thanks to Fourier duality, Gaussians not only come up in the context of spatial multiplication, but also frequency multiplication (e.g. convolutions, and hence CLT, or heat kernels).</p>
<p>One can also take an adelic viewpoint. When studying non-archimedean fields such as the p-adics $Q_p$, compact subgroups such as $Z_p$ play a pivotal role. On the reals, it seems the natural analogue of these compact subgroups are the Gaussians (cf. Tate's thesis). One can sort of justify the existence and central role of Gaussians on the grounds that the real number system "needs" something like the compact subgroups that its non-archimedean siblings enjoy, though this doesn't fully explain why Gaussians would then be exponentiated quadratic in nature.</p>
http://mathoverflow.net/questions/40268/why-is-the-gaussian-so-pervasive-in-mathematics/40457#40457Answer by S. Carnahan for Why is the Gaussian so pervasive in mathematics?S. Carnahan2010-09-29T11:47:07Z2010-09-29T11:47:07Z<p>This is just a minor amplification of one of Terry Tao's points. For any prime $p$, the ring <code>$\mathbb{Z}_p$</code> of <a href="http://en.wikipedia.org/wiki/P-adic_number" rel="nofollow">$p$-adic integers</a> forms an open compact additive subgroup of <code>$\mathbb{Q}_p$</code>, the completion of $\mathbb{Q}$ under the p-adic metric, and its characteristic function should be viewed as a p-adic analogue of the Gaussian. It displays many analogues of the nice properties we see from the Gaussian:</p>
<ol>
<li>It is smooth (in the sense that the smooth functions on totally disconnected spaces are defined as the locally constant functions, but this isn't completely tautological, since this class of functions turns out to be useful).</li>
<li>It is taken to itself under the $p$-adic Fourier transform when normalizations are chosen appropriately.</li>
<li>It obeys something like a central limit theorem. For example, if you flip lots of coins, and ask for the number of heads mod $p^n$, you will, for sufficiently long trials, get a distribution that is close to uniform. It sounds like there could be a way to interpret this sort of convolution in terms of heat flowing, but I don't know a precise statement.</li>
</ol>
<p>The situation with the real line is more complicated because it is connected but not compact, and therefore has no open compact subgroups. There is a maximal compact multiplicative monoid (occasionally called the "ring of integers of $\mathbb{R}$" informally), given by the closed interval $[-1,1]$. You can think of the Gaussian as a smoothing of the uniform distribution on $[-1,1]$, but it is not clear to me that this particular analogy is very fruitful.</p>
http://mathoverflow.net/questions/40268/why-is-the-gaussian-so-pervasive-in-mathematics/40480#40480Answer by Alex Bloemendal for Why is the Gaussian so pervasive in mathematics?Alex Bloemendal2010-09-29T15:08:55Z2010-09-29T15:08:55Z<p>I'm not an expert, but I believe Stein's method gives a more satisfying connection between the CLT and the heat equation, in particular one that does not involve the Fourier transform. Stein's characterization of the normal distribution and convergence to normality involves an operator closely related to the generator of the Ornstein-Uhlenbeck process. On the other hand, the fact that latter has the Gaussian as its invariant measure can be obtained by a trivial transformation of the fundamental solution of the heat equation.</p>
http://mathoverflow.net/questions/40268/why-is-the-gaussian-so-pervasive-in-mathematics/112370#112370Answer by jbc for Why is the Gaussian so pervasive in mathematics?jbc2012-11-14T09:17:26Z2012-11-14T09:17:26Z<p>One of the reasons for the ubiquity of the Gaussian is displayed in what is probably the most electrifying half page of scientific prose ever written---Maxwell's argument that the distribution of the velocities of molecules in the ideal gas is Gaussian (now known as the Maxwell-Boltzmann distribution). The only physical assumptions used are that the density function depends only on the absolute value of the velocity (and not the direction) and that the components in the directions of the coordinate axes are statistically independent. Mathematically, ths means that the only functions in $3$-space which depend only on the distance $r$ from the origin and which split as the product of three functions of one variable are those of the form $ae^{br^2}$. Maxwell does this by inspection but it is easy to give a rigorous proof (under very weak smoothness conditions) and the result holds, of course, in any dimension greater then or equal to $2$. Maxwell's reasoning can be found in his collected papers, or, more accesssibly, in Hawking's anthology "On the Shoulders of Giants".</p>