the Dirichlet distribution
By arthur charpentier on Wednesday, February 15 2012, 18:54 - MAT8886 copulas and extremes - Permalink
In the course, since we are still introducing some concepts of dependent distributions, we will talk about the Dirichlet distribution, which is a distribution over the simplex of
. Let
denote the Gamma distribution with density (on
)

Let
denote independent
random variables, with
. Then
where

has a Dirichlet distribution with parameter
. Note that
has a distribution in the simplex of
,

and has density

We will write
.
|
|
|
![]() |
![]() |
|
|
|
![]() |
![]() |
can be visualized below, e.g.
, with some kind of symmetry, 
or
and
, below
and finally, below,

Note that marginal distributions are also Dirichlet, in the sense that if


, and if
, then
's have Beta distributions, 
> library(MCMCpack) > alpha=c(2,2,5) > x=seq(0,1,by=.05) > vx=rep(x,length(x)) > vy=rep(x,each=length(x)) > vz=1-x-vy > V=cbind(vx,vy,vz) > D=ddirichlet(V, alpha) > persp(x,x,matrix(D,length(x),length(x))















Comments
great post!
Just wondering how you created those nice animated gifs?
Alekk.