This method does not look at which specific groups of similar numbers are selected, but counts the similar number groups to see how many distinct groups of numbers ending with the same digit appear in the draw
Lottery numbers can be divided into 10 groups, based on their last digit (ending digit):
Group 0: Numbers ending with 0 (10, 20, 30, …)
Group 1: Numbers ending with 1 (1, 11, 21, 31, …)
Group 2: Numbers ending with 2 (2, 12, 22, 32, …)
Group 3: Numbers ending with 3 (3, 13, 23, 33, …)
Group 4: Numbers ending with 4 (4, 14, 24, 34, …)
Group 5: Numbers ending with 5 (5, 15, 25, 35, …)
Group 6: Numbers ending with 6 (6, 16, 26, 36, …)
Group 7: Numbers ending with 7 (7, 17, 27, 37, …)
Group 8: Numbers ending with 8 (8, 18, 28, 38, …)
Group 9: Numbers ending with 9 (9, 19, 29, 39, …)
Each draw pulls numbers from a subset of these groups.
For example:
Draw = 1, 12, 3, 33, 44
Group 1 → (1)
Group 2 → (12)
Group 3 → (3, 33) - 2 numbers from group 3
Group 4 → (44)
→ 4 groups in total
or
Draw = 1, 12, 22, 33, 43
Group 1 → (1)
Group 2 → (12, 22) - 2 numbers from group 2
Group 3 → (33, 43) - 2 numbers from group 3
→ 3 groups in total
So, this analysis methods just counts the occurrences of groups
|