Quels processus pourraient générer des données ou des paramètres distribués par Laplace (double exponentielle)?

16

Beaucoup de distributions ont des "mythes d'origine", ou des exemples de processus physiques qu'ils décrivent bien:

  • Vous pouvez obtenir des données normalement distribuées à partir de sommes d'erreurs non corrélées via le théorème de limite centrale
  • Vous pouvez obtenir des données distribuées binomialement à partir de retournements de pièces indépendants, ou des variables distribuées par Poisson à partir d'une limite de ce processus
  • Vous pouvez obtenir des données distribuées de façon exponentielle à partir des temps d'attente sous un taux de décroissance constant.

Etc.

Mais qu'en est-il de la distribution Laplace ? C'est utile pour la régularisation L1 et la régression LAD , mais il est difficile pour moi de penser à une situation où l'on devrait réellement s'attendre à le voir dans la nature. La diffusion serait gaussienne, et tous les exemples auxquels je peux penser avec des distributions exponentielles (par exemple les temps d'attente) impliquent des valeurs non négatives.

David J. Harris
la source
2
Connexes: stats.stackexchange.com/questions/71126/… .
StubbornAtom

Réponses:

14

Au bas de la page Wikipedia que vous avez liée, vous trouverez quelques exemples:

  • Si et X 2 sont des distributions exponentielles IID, X 1 - X 2X1X2X1X2 a une distribution de Laplace.

  • Si sont des distributions normales standard IID, X 1 X 4 - X 2 X 3 a une distribution Laplace standard. Ainsi, le déterminant d'une matrice aléatoire 2 × 2 avec des entrées normales standard IID ( X 1 X 2 X 3 X 4 ) a une distribution de Laplace.X1,X2,X3,X4X1X4X2X32×2(X1X2 X3X4)

  • X1,X2[0,1]logX1X2 has a standard Laplace distribution.

Douglas Zare
la source
16
+1 It may be worth noticing that all three examples are really the same: #2 can be rewritten as ((X1+X4)2+(X2+X3)2[(X1X4)2+(X2X3)2])/4, a scaled difference of two scaled χ2(2) (Exponential) distributions, and #3 is the difference of two Exponential distributions because the log(Xi) are Exponential.
whuber
2
@whuber: Thanks for that explanation for why the determinant was the same as the others! I was surprised to see it, since I would have guessed that the density of the determinant would vary smoothly, as it does everywhere except 0.
Douglas Zare
2
So I'm trying to think of a "story" that would fit any of the examples on wikipedia. Say I'm playing pinball with my equally lousy brother. Each game we play one ball each. Roughly any given moment there is an equal chance that I (or he) will lose a ball and the score is basically a linear function of for how long I play. Then my score (and his) could be modelled by an exponential distribution and the difference between me and my brother's score each round will be Laplace distributed. Sort of works?
Rasmus Bååth
2

Define a compound geometric distribution as the sum of Np iid random variables XN=iNpXi, where Np is distributed like a geometric distribution with parameter p. Assume that the iid random variables Xi have finite mean μ and variance v.

It was shown by Gnedenko that in the limit p0, the compound geometric distribution approaches a Laplace distribution.

Y:=limp0p(XNNpμ)=Laplace(0,v2)

The density of the Laplace(a,b) is ϕ(x)=12bexp(|xa|2b)

B.V Gnedenko, Limit theorems for Sums of random number of positive independent random variables, Proc. 6th Berkeley Syposium Math. Stat. Probabil. 2, 537-549, 1970.

danp
la source