It is currently Fri Apr 19, 2024 3:54 am

All times are UTC - 8 hours [ DST ]




Post new topic Reply to topic  [ 33 posts ]  Go to page Previous  1, 2
Author Message
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #21 Posted: Mon Jun 28, 2010 10:34 am 
Judan

Posts: 6140
Liked others: 0
Was liked: 786
pwaldron wrote:
Your recent calculations don't treat the tournaments in a general way: 3210 is structurally the same as 0123.


Yes, but I am interested in the combinatorics of tie frequencies rather than the score pattern structure.

Quote:
However, if you do distinguish those two cases, then a tournament of P players will have 2^(P*(P-1)/2 different outcomes if there are no jigos, and 3^(P*(P-1)/2) if there are.


Right. (Calculation: Number of available results to the power number of all games.)

***

How in general do you get the "Number of ties for first place" if you don't distinguish structurally same score patterns?

Top
 Profile  
 
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #22 Posted: Mon Jun 28, 2010 1:16 pm 
Lives in gote

Posts: 394
Liked others: 29
Was liked: 176
GD Posts: 1072
RobertJasiek wrote:
Yes, but I am interested in the combinatorics of tie frequencies rather than the score pattern structure.


In that case the original problem could be stated better. The 'names' (i.e., labels) of the players do matter, since the tournament with result vector 3210 is not equivalent to 0123. No matter, it's cleared up now.

RobertJasiek wrote:
How in general do you get the "Number of ties for first place" if you don't distinguish structurally same score patterns?


It doesn't show up so well for the n=4 case. In the case of n=6, there are a variety of ways to get the tournament winner with four wins:

444210
444111
443310
443220
443211
442221

In n=6 case, there are 22 nonisomorphic tournament graphs. There are six cases where the winner is tied with four wins, and (if memory serves) three cases where the winner has three wins and is tied. The tie frequency is therefore 9/22. Naturally this isn't the same as the case where player names matter.

Regardless, the result set is small enough that all tournaments with n=6 can be directly enumerated. n=8 should be tractable as well (270 million cases). Beyond that you'll probably have to shift to Monte Carlo sampling techniques to get an estimate of the tie frequency rather than a hard number.

I'm curious whether this actually has any meaning beyond an amusing exercise. I assume it is motivated by the upcoming discussions about the EC, but the fact that players are of differing strengths in real life means the results here have little application.

Top
 Profile  
 
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #23 Posted: Mon Jun 28, 2010 1:53 pm 
Judan

Posts: 6140
Liked others: 0
Was liked: 786
Round-robins are thrown into EC system proposals as if they were the solution to everything. While they provide the second-best (double round-robin is yet better) possible pairing quality and give a lot of top-top games for those few inside, the pretty high tie frequencies require abundant usage of tiebreakers for seeding or (if desired) splitting result hairs. The requirement for tiebreakers reduces the fake high quality of round-robin. If non-Europeans (immaterial for EC results) shall be in some of the round-robins (as in some of the proposals), then ties become yet more frequent (a second or third place might mean to win the EC or a preliminary stage as a European) and so becomes usage of tiebreakers.

From experience I knew that round-robins with P=6 have a pretty high tie rate. This thread might confirm profoundly the guess that also for slightly greater P the tie frequency is pretty high.

When we will have understood the basic theory, we can then also try to attack varying player strength models...

Top
 Profile  
 
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #24 Posted: Mon Jun 28, 2010 4:00 pm 
Lives in gote

Posts: 350
Location: London UK
Liked others: 19
Was liked: 19
Rank: EGF 12kyu
DGS: willemien
RobertJasiek wrote:
Oops. Thanks to willemien and pwaldron for pointing out my thinko.


willemien, how do you get 3 | 32/64 as FrequencyOfTies? Must that not be 24/64?


The problem is that the meaning of 3 ties is ambigious.

And depending on the meaning you get 24/64, 32/64 or 48/64.
(Maybe you can even find a reasonable definition that makes it 8/64 or 16/64 :D )


Code:
3210 24  Clear 3rd place
3111  8  No distinction between 2 3 and 4
2220  8  No distinction between 1 2 and 3
2211 24  No distinction between 3 and 4


I used it as there is no distinction between 3rd and 4th place (3111 and 2211)
While i guess you only counted 2211 (no distinction between 3rd and 4th place but there is a distinction between 2nd and 3rd)

(While if you mean there is no clear 3rd place the answer is 3111 + 2220 + 2211 = 48/64) :-?


Still puzzeling about FrequencyForPlayerToBeInTie

If it means any player ties the chance is (there is a tie in the result)
3111 + 2220 + 2211 = 48/64

if it means a specific player ties it is (player A ties)

3/4 of 3111 + 3/4 of 2220 + 2211 =
6 + 6 + 24 = 36/64

But with another meaning the result would be different.

Was thinking about writing a program that enumerates all options in a 6player round robin but with all these ambiguies it is better to first to define what really is wanted


Statistics is such a fun. :twisted:

_________________
Promotor and Librarian of Sensei's Library

Top
 Profile  
 
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #25 Posted: Mon Jun 28, 2010 6:46 pm 
Lives in gote

Posts: 350
Location: London UK
Liked others: 19
Was liked: 19
Rank: EGF 12kyu
DGS: willemien
Could not resist it
Here the raw data for p=6 no jigo



Code:

p=6

Wingraph    #PlayerCombinations    TiesOnPlaces
543210           720               none
543111           240               (456)   
542220           240               (345)
542211           720               (34)    (56)
533310           240               (234)
533220           720               (23)    (45)   
533211          1440               (23)    (56)
532221          1680               (345)
522222           144               (23456)
444210           240               (123)
444111            80               (123)   (456)
443310           720               (12)    (34)
443220          1440               (12)    (45)
443211          2880               (12)    (56)
442221          1680               (12)    (345)
433320          1680               (234)
433311          1680               (234)   (56) 
433221          8640               (23)    (45)
432222          2400               (3456)
333330           144               (12345)
333321          2400               (1234)
333222          2640               (123)   (456)
----------------------------------------------------
22 graphs      32768 combinations           





so now which statistics do you want?

_________________
Promotor and Librarian of Sensei's Library

Top
 Profile  
 
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #26 Posted: Mon Jun 28, 2010 7:19 pm 
Lives in gote

Posts: 394
Liked others: 29
Was liked: 176
GD Posts: 1072
willemien wrote:
Could not resist it
Here the raw data for p=6 no jigo


Very nice. Is there a clever way to count the number of combinations without exhaustive enumeration?

Top
 Profile  
 
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #27 Posted: Mon Jun 28, 2010 9:35 pm 
Judan

Posts: 6140
Liked others: 0
Was liked: 786
willemien, a tie on place 3 can occur only if place 3 is not skipped due to a tie on place 1 or 2. It is common sense to skip place numbers when players share a better place. - The correct frequency is 24/64. So your text corrected:

Code:
p=4

Wins #PlayerCombinations TiesOnPlaces #PlayersInTies
3210         24          -            0
3111          8          2            3
2220          8          1            3
2211         24          1+3          4
----------------------------------------------------
             64

4 different distributions
3 with ties

Place FrequencyOfTies
1     32/64
2     16/64
3     24/64

Place FrequencyOfTopMostTies
1     32/64
2     16/64
----------------------------
      48/64


Quote:
Still puzzeling about FrequencyForPlayerToBeInTie


Given all player-dependent win distributions and a particular player. With which frequency will this player "draw" a tie in that he is involved? So I guess that this is what I mean:

Quote:
FrequencyForPlayerToBeInTie

THIS NEEDS MORE INVESTIGATION
(8*3+8*3+24*4)/(4*64) = 144/256 ??

Top
 Profile  
 
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #28 Posted: Mon Jun 28, 2010 9:44 pm 
Judan

Posts: 6140
Liked others: 0
Was liked: 786
Quote:
so now which statistics do you want?


You tie annotation is more detailed. I was looking only for the first number per bracket but, now that I see your detailed brackets, I have got a taste for the greater detail;) Anyway, you should allow the output of frequency of the leading bracket numbers and their combinatorical summing up, which I can't resist to be about doing:)

How have you calculated the #PlayerCombinations?

Top
 Profile  
 
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #29 Posted: Mon Jun 28, 2010 9:59 pm 
Judan

Posts: 6140
Liked others: 0
Was liked: 786
Believing willemien's numbers blindly, we would get these sums for No Jigo, P=6:


No ties:

720/32768


Tie on place 1:

(240+80+720+1440+2880+1680+144+2400+2640)/32768 = 12224/32768


Tie on place 2:

(240+720+1440+144+1680+1680+8640)/32768 = 14544/32768


Tie on place 3:

(240+720+1680+720+1680+2400)/32768 = 7440/32768


Tie on place 4:

(240+720+80+1440+8640+2640)/32768 = 13760/32768


Tie on place 5:

(720+1440+2880+1680)/32768 = 6720/32768

Top
 Profile  
 
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #30 Posted: Mon Jun 28, 2010 10:06 pm 
Judan

Posts: 6140
Liked others: 0
Was liked: 786
I have become thirsty of numbers:)

There are more interesting questions: What are the tie frequencies (esp. for place 1) after application of either of these tiebreakers?

- MutualGameScore iff 2 players are tied on a place
- Non-iterativeDirectComparison
- IterativeDirectComparison

Top
 Profile  
 
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #31 Posted: Tue Jun 29, 2010 6:26 am 
Lives in gote

Posts: 350
Location: London UK
Liked others: 19
Was liked: 19
Rank: EGF 12kyu
DGS: willemien
pwaldron wrote:
willemien wrote:
Could not resist it
Here the raw data for p=6 no jigo


Very nice. Is there a clever way to count the number of combinations without exhaustive enumeration?


No sorry on purpose i did not do anything clever, not even one fixed game
I just let my pc ramble trough all 32.768 enumerations.
and then sort enumeration to graph and so.

I think that makes the data more reliable.

Ties breaker:

Two players with same score.

This tie is always broken (there is always an non jigo result between the players)


Three players with the same score

again a brute force approach
I did select the enumerations where

- A B and C have the same (total) number of wins
- A doesn't have the same number of wins as D E or F
- A has more than 3 wins
(so not where 4 or 5 tie nor where the number of wins of A B and C is below 3)

in this overview a tie is broken iff A has a different number of wins as B only counting the results between A B and C

Code:
Wingraph    #Combinations    ABC ties    broken between abc   broken  all
533310           240            12          none                0
444210           240            12          none                0
444111            80             4          none                0
433320          1680            84          36/84             720
433311          1680            84          36/84             720
333222          2640           132          72/132           1440



In three way ties ABC is one of the 20 possibilities (is that correct? 6!/(3!* 3!)= 720/(6*6) = 20) :D

The broken all is just the broken broken between abc x 20 (so it is compareble with the # combinations)

The results of graph 333222 are complicated.Here only the results between A B and C is checked
IT SAYS NOTHING ABOUT THE OTHER TIE :twisted:

For 444111 we can say more, because no combination is broken with DC or IDC also the other tie is not broken.
(it looks like you only get the 444111 result if the 3 stronger beat all the weaker and both groups tie under themselves)

_________________
Promotor and Librarian of Sensei's Library

Top
 Profile  
 
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #32 Posted: Mon Jul 05, 2010 2:05 am 
Lives in gote

Posts: 350
Location: London UK
Liked others: 19
Was liked: 19
Rank: EGF 12kyu
DGS: willemien
RobertJasiek wrote:
willemien, a tie on place 3 can occur only if place 3 is not skipped due to a tie on place 1 or 2. It is common sense to skip place numbers when players share a better place. - The correct frequency is 24/64. So your text corrected:

Code:
p=4

Wins #PlayerCombinations TiesOnPlaces #PlayersInTies
3210         24          -            0
3111          8          2            3
2220          8          1            3
2211         24          1+3          4
----------------------------------------------------
             64

4 different distributions
3 with ties

Place FrequencyOfTies
1     32/64
2     16/64
3     24/64

Place FrequencyOfTopMostTies
1     32/64
2     16/64
----------------------------
      48/64




But the you are wrong with the frequency of ties for the second place
that should then be 8/64 (graph 3111 only)

_________________
Promotor and Librarian of Sensei's Library

Top
 Profile  
 
Offline
 Post subject: Re: Round-robin: Frequency of Ties
Post #33 Posted: Mon Jul 05, 2010 3:24 am 
Judan

Posts: 6140
Liked others: 0
Was liked: 786
Thanks, corrected:


Code:
p=4

Wins #PlayerCombinations TiesOnPlaces #PlayersInTies
3210         24          -            0
3111          8          2            3
2220          8          1            3
2211         24          1+3          4
----------------------------------------------------
             64

4 different distributions
3 with ties

Place FrequencyOfTies
1     32/64
2      8/64
3     24/64

Place FrequencyOfTopMostTies
1     32/64
2      8/64
----------------------------
      40/64

Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 33 posts ]  Go to page Previous  1, 2

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group