Playing around with the Standard Normal distribution, $\exp\left(-x^2\right)$, I was wondering about generalizing the distribution by parameterizing the $2$ to a variable $a$. After graphing the distribution for different values of $a$, I decided to see how the value of $a$ affected the area under the curve, which I call $f(a) = \int _{-\infty}^{\infty} \exp\left(-|x|^a\right)dx$. Unable to calculate this analytically (the usual method for calculating the case of $a=2$ by polar coordinates does not generalize) I decided to calculate the function numerically. Here is a graph of the function for $a\in[1,10]$:
As you can see, the function has a minimum near (but not at) $a=2$. I am particularly interested in finding the exact value of the minimum value, though any other facts about this function would be interesting to know. Using Python, my best estimate for the global minimum is $a\approx2.1662269$.
Here is a full list of what I know about the function:
- As $a\to0$, $f(a)\to\infty$
- As $a\to\infty$, $f(a)\to2$
- There is a global minimum around $a\approx2.1662269$
- $f$ is monotonically decreasing on the interval $(0,\mathrm{minimum})$ and monotonically increasing on $(\mathrm{minimum},\infty)$
Besides that I'm stumped. I tried calculating $\frac{d}{da}f(a) = \frac{d}{da}\int _{-\infty}^{\infty} \exp\left(-|x|^a\right)dx$ but I'm not sure how to evaluate that (maybe there's some multivariable generalization of the Fundamental Theorem of Calculus I've forgotten?). I've taken Calculus classes through Calc III and Diff Eq but don't have a clue how to solve this.
$$\int_0^{\infty} dx \, e^{-x^a} = \frac1{a} \int_0^{\infty} du \, u^{1/a - 1} e^{-u} = \frac1{a} \Gamma \left ( \frac1{a} \right ) = \Gamma \left ( 1+\frac1{a} \right )$$
To find a local minima, use $\Gamma'(x) = \Gamma(x) \psi(x) $. Other than that, you are more or less stuck with a transcendental equation. Certainly, $\psi(x)$ has a zero in the vicinity of the minimum you have pointed out, but I do not have a good, non-numerical way of locating it.