@Neels,
Three posibilities for distribution of prizes; one person wins all three; two people win all three prizes (two ways); three people win a prize.
Use combination C(n,r)=n!/[r!(n-r)!] n is # in population (10), r is distribution
1st case one winner takes all C(10,1)=10!/[1!*9!]=10
2nd case two winners takes all C(10,2)=10!/[2!*8!]=10*9/2=45
two ways (2,1)&(1,2) 2*C(10,2)=90
3rd case three pople win a prize C(10,3)=10!/[3!*7!]=10*9*8/(3*2)=10*3*4=120
Putting them all together t=C(10,1)+2*C(10,2)+C(10,3)=10+2*45+120=220
Rap