noowutah
- 56
- 3
I have an application where I need to pick a probability distribution (x_{1},\ldots,x_{n}) at random and uniformly from the simplex of all points for which the coordinates add up to 1, i.e. \sum_{i=1}^{n}x_{i}=1. Surprisingly, I didn't find much about simplex point picking on the internet, but http://en.wikipedia.org/wiki/User:Skinnerd/Simplex_Point_Picking appears to address this issue. Skinnerd suggests to pick individual members of (y_{1},\ldots,y_{n}) randomly from a uniform distribution over the interval (0,1) and then take x_{i}=\frac{\ln{}y_{i}}{\sum{}\ln{}y_{i}}. So far so good (although, why does he need the minus sign in his x_{i}=-\ln{}y_{i}?).
My question is: what is the distribution of x_{i} over the interval (0,1), i.e. what is the probability P(a<x<b) that one of these coordinates is in (a,b)\subseteq{}(0,1)?
My question is: what is the distribution of x_{i} over the interval (0,1), i.e. what is the probability P(a<x<b) that one of these coordinates is in (a,b)\subseteq{}(0,1)?