A probability distribution in the sample spaceS is a function $p$ assigning a number $p(s_i)$ to each possible outcome $s_i$ in $S$ (the probability of $s_i$), such that:
values are exhaustive (cover everything)
values are mutually exclusive (no overlap)
0≤p(si)≤1, for all i=1 to n
p(s1)+p(s2)+...+p(sn)=1
All probability values add up to 1.
A uniform distribution is where the probabilities are evenly distributed across the sample space. $$ p(s_i) = \frac{1}{n} \text{ for all } i = 1 \text{ to } n $$
title: ExampleGiven the uniform distribution on $S$.If a fair dice is rolled, then there are six possible equally likely outcomes: $1,2,3,4,5,6$.So $p(1) = p(2) = ... = p(6) = \frac{1}{6}$.