Am trying to run a pattern of number in such a way that the below numbers which is actually a game score will show possible ways where 3 scores from the three columns will occur together as a group
[TABLE="class: cms_table"]
<tbody>[TR]
[TD]2-1[/TD]
[TD]0-0[/TD]
[TD]1-2[/TD]
[/TR]
[TR]
[TD]2-0[/TD]
[TD]0-1[/TD]
[TD]0-2[/TD]
[/TR]
[TR]
[TD]1-1[/TD]
[TD]0-2[/TD]
[TD]0-1[/TD]
[/TR]
[TR]
[TD]1-2[/TD]
[TD]1-0[/TD]
[TD]1-1[/TD]
[/TR]
[TR]
[TD]1-0[/TD]
[TD]1-2[/TD]
[TD]1-0[/TD]
[/TR]
[TR]
[TD]0-1[/TD]
[TD]1-3[/TD]
[TD]2-1[/TD]
[/TR]
</tbody>[/TABLE]
e.g
(2-1,0-0,1-2)
(2-1,0-1,0-2)
(2-1,0-2,0-1)
The question is how many times can each individual score predict 3 scores in one group?
I will appreciate some help on how to go about this as am running mad just doing it manually. Its like a multiplier table where each number multiplies 3 numbers in a group like this (2-1,0-2,0-1)