Folded normal distribution

From HandWiki
Short description: Probability distribution
Probability density function
Probability density function for the folded-normal distribution
μ=1, σ=1
Cumulative distribution function
Cumulative distribution function for the normal distribution
μ=1, σ=1
Parameters μR   (location)
σ2 > 0   (scale)
Support x ∈ [0,∞)
PDF 1σ2πe(xμ)22σ2+1σ2πe(x+μ)22σ2
CDF 12[erf(x+μσ2)+erf(xμσ2)]
Mean μY=σ2πe(μ2/2σ2)+μ(12Φ(μσ))
Variance σY2=μ2+σ2μY2

The folded normal distribution is a probability distribution related to the normal distribution. Given a normally distributed random variable X with mean μ and variance σ2, the random variable Y = |X| has a folded normal distribution. Such a case may be encountered if only the magnitude of some variable is recorded, but not its sign. The distribution is called "folded" because probability mass to the left of x = 0 is folded over by taking the absolute value. In the physics of heat conduction, the folded normal distribution is a fundamental solution of the heat equation on the half space; it corresponds to having a perfect insulator on a hyperplane through the origin.

Definitions

Density

The probability density function (PDF) is given by

fY(x;μ,σ2)=12πσ2e(xμ)22σ2+12πσ2e(x+μ)22σ2

for x ≥ 0, and 0 everywhere else. An alternative formulation is given by

f(x)=2πσ2e(x2+μ2)2σ2cosh(μxσ2),

where cosh is the cosine Hyperbolic function. It follows that the cumulative distribution function (CDF) is given by:

FY(x;μ,σ2)=12[erf(x+μ2σ2)+erf(xμ2σ2)]

for x ≥ 0, where erf() is the error function. This expression reduces to the CDF of the half-normal distribution when μ = 0.

The mean of the folded distribution is then

μY=σ2πexp(μ22σ2)+μerf(μ2σ2)

or

μY=2πσeμ22σ2+μ[12Φ(μσ)]

where Φ is the normal cumulative distribution function:

Φ(x)=12[1+erf(x2)].

The variance then is expressed easily in terms of the mean:

σY2=μ2+σ2μY2.

Both the mean (μ) and variance (σ2) of X in the original normal distribution can be interpreted as the location and scale parameters of Y in the folded distribution.

Properties

Mode

The mode of the distribution is the value of x for which the density is maximised. In order to find this value, we take the first derivative of the density with respect to x and set it equal to zero. Unfortunately, there is no closed form. We can, however, write the derivative in a better way and end up with a non-linear equation

df(x)dx=0(xμ)σ2e12(xμ)2σ2(x+μ)σ2e12(x+μ)2σ2=0

x[e12(xμ)2σ2+e12(x+μ)2σ2]μ[e12(xμ)2σ2e12(x+μ)2σ2]=0

x(1+e2μxσ2)μ(1e2μxσ2)=0

(μ+x)e2μxσ2=μx

x=σ22μlogμxμ+x.

Tsagris et al. (2014) saw from numerical investigation that when

μ<σ

, the maximum is met when

x=0

, and when

μ

becomes greater than

3σ

, the maximum approaches

μ

. This is of course something to be expected, since, in this case, the folded normal converges to the normal distribution. In order to avoid any trouble with negative variances, the exponentiation of the parameter is suggested. Alternatively, you can add a constraint, such as if the optimiser goes for a negative variance the value of the log-likelihood is NA or something very small.

  • The characteristic function is given by

φx(t)=eσ2t22+iμtΦ(μσ+iσt)+eσ2t22iμtΦ(μσ+iσt).

  • The moment generating function is given by

Mx(t)=φx(it)=eσ2t22+μtΦ(μσ+σt)+eσ2t22μtΦ(μσ+σt).

  • The cumulant generating function is given by

Kx(t)=logMx(t)=(σ2t22+μt)+log{1Φ(μσσt)+eσ2t22μt[1Φ(μσσt)]}.

  • The Laplace transformation is given by

E(etx)=eσ2t22μt[1Φ(μσ+σt)]+eσ2t22+μt[1Φ(μσ+σt)].

  • The Fourier transform is given by

f^(t)=φx(2πt)=e4π2σ2t22i2πμt[1Φ(μσi2πσt)]+e4π2σ2t22+i2πμt[1Φ(μσi2πσt)].

  • When μ = 0, the distribution of Y is a half-normal distribution.
  • The random variable (Y/σ)2 has a noncentral chi-squared distribution with 1 degree of freedom and noncentrality equal to (μ/σ)2.
  • The folded normal distribution can also be seen as the limit of the folded non-standardized t distribution as the degrees of freedom go to infinity.
  • There is a bivariate version developed by Psarakis and Panaretos (2001) as well as a multivariate version developed by Chakraborty and Chatterjee (2013).
  • The Rice distribution is a multivariate generalization of the folded normal distribution.
  • Modified half-normal distribution[1] with the pdf on (0,) is given as f(x)=2βα2xα1exp(βx2+γx)Ψ(α2,γβ), where Ψ(α,z)=1Ψ1((α,12)(1,0);z) denotes the Fox–Wright Psi function.

Statistical Inference

Estimation of parameters

There are a few ways of estimating the parameters of the folded normal. All of them are essentially the maximum likelihood estimation procedure, but in some cases, a numerical maximization is performed, whereas in other cases, the root of an equation is being searched. The log-likelihood of the folded normal when a sample xi of size n is available can be written in the following way

l=n2log2πσ2+i=1nlog[e(xiμ)22σ2+e(xi+μ)22σ2]

l=n2log2πσ2+i=1nlog[e(xiμ)22σ2(1+e(xi+μ)22σ2e(xiμ)22σ2)]

l=n2log2πσ2i=1n(xiμ)22σ2+i=1nlog(1+e2μxiσ2)

In R (programming language), using the package Rfast one can obtain the MLE really fast (command foldnorm.mle). Alternatively, the command optim or nlm will fit this distribution. The maximisation is easy, since two parameters (

μ

and

σ2

) are involved. Note, that both positive and negative values for

μ

are acceptable, since

μ

belongs to the real line of numbers, hence, the sign is not important because the distribution is symmetric with respect to it. The next code is written in R

folded <- function(y) {

  ## y is a vector with positive data
  n <- length(y)  ## sample size
  sy2 <- sum(y^2)

    sam <- function(para, n, sy2) {
      me <- para[1]   ;   se <- exp( para[2] )
      f <-  - n/2 * log(2/pi/se) + n * me^2 / 2 / se +
            sy2 / 2 / se - sum( log( cosh( me * y/se ) ) )
      f
    }

  mod <- optim( c( mean(y), sd(y) ), n = n, sy2 = sy2, sam, control = list(maxit = 2000) )
  mod <- optim( mod$par, sam, n = n, sy2 = sy2, control = list(maxit = 20000) )
  result <- c( -mod$value, mod$par[1], exp(mod$par[2]) )
  names(result) <- c("log-likelihood", "mu", "sigma squared")
  result

}

The partial derivatives of the log-likelihood are written as

lμ=i=1n(xiμ)σ22σ2i=1nxie2μxiσ21+e2μxiσ2

lμ=i=1n(xiμ)σ22σ2i=1nxi1+e2μxiσ2  and

lσ2=n2σ2+i=1n(xiμ)22σ4+2μσ4i=1nxie2μxiσ21+e2μxiσ2

lσ2=n2σ2+i=1n(xiμ)22σ4+2μσ4i=1nxi1+e2μxiσ2.

By equating the first partial derivative of the log-likelihood to zero, we obtain a nice relationship

i=1nxi1+e2μxiσ2=i=1n(xiμ)2.

Note that the above equation has three solutions, one at zero and two more with the opposite sign. By substituting the above equation, to the partial derivative of the log-likelihood w.r.t σ2 and equating it to zero, we get the following expression for the variance

σ2=i=1n(xiμ)2n+2μi=1n(xiμ)n=i=1n(xi2μ2)n=i=1nxi2nμ2,

which is the same formula as in the normal distribution. A main difference here is that μ and σ2 are not statistically independent. The above relationships can be used to obtain maximum likelihood estimates in an efficient recursive way. We start with an initial value for σ2 and find the positive root (μ) of the last equation. Then, we get an updated value of σ2. The procedure is being repeated until the change in the log-likelihood value is negligible. Another easier and more efficient way is to perform a search algorithm. Let us write the last equation in a more elegant way

2i=1nxi1+e2μxiσ2i=1nxi(1+e2μxiσ2)1+e2μxiσ2+nμ=0

i=1nxi(1e2μxiσ2)1+e2μxiσ2+nμ=0.

It becomes clear that the optimization the log-likelihood with respect to the two parameters has turned into a root search of a function. This of course is identical to the previous root search. Tsagris et al. (2014) spotted that there are three roots to this equation for μ, i.e. there are three possible values of μ that satisfy this equation. The μ and +μ, which are the maximum likelihood estimates and 0, which corresponds to the minimum log-likelihood.

See also

References

  • Tsagris, M.; Beneki, C.; Hassani, H. (2014). "On the folded normal distribution". Mathematics 2 (1): 12–28. doi:10.3390/math2010012. 
  • "The Folded Normal Distribution". Technometrics 3 (4): 543–550. 1961. doi:10.2307/1266560. 
  • Johnson NL (1962). "The folded normal distribution: accuracy of the estimation by maximum likelihood". Technometrics 4 (2): 249–256. doi:10.2307/1266622. 
  • Nelson LS (1980). "The Folded Normal Distribution". J Qual Technol 12 (4): 236–238. doi:10.1080/00224065.1980.11980971. 
  • Elandt RC (1961). "The folded normal distribution: two methods of estimating parameters from moments". Technometrics 3 (4): 551–562. doi:10.2307/1266561. 
  • Lin PC (2005). "Application of the generalized folded-normal distribution to the process capability measures". Int J Adv Manuf Technol 26 (7–8): 825–830. doi:10.1007/s00170-003-2043-x. 
  • Psarakis, S.; Panaretos, J. (1990). "The folded t distribution". Communications in Statistics - Theory and Methods 19 (7): 2717–2734. doi:10.1080/03610929008830342. 
  • Psarakis, S.; Panaretos, J. (2001). "On some bivariate extensions of the folded normal and the folded-t distributions". Journal of Applied Statistical Science 10 (2): 119–136. 
  • Chakraborty, A. K.; Chatterjee, M. (2013). "On multivariate folded normal distribution". Sankhyā: The Indian Journal of Statistics, Series B 75 (1): 1–15.