bliutwo / django-glicko2

0 stars 0 forks source link

chance of player winning the tournament calculator. #3

Open BenKatin opened 5 years ago

BenKatin commented 5 years ago

either by entering a link to an unfinished (or unstarted) challonge bracket, or by entering of list of player names entering a tournament, compute each players expected chance of winning the bracket.

BenKatin commented 5 years ago

Given a incomplete tournament and a file of player glico2 scores, calculate each players percentage change of winning the tournament.

bliutwo commented 5 years ago

prerequisites for this:

bliutwo commented 5 years ago

solution:

BenKatin commented 5 years ago

2 player bracket option A: (P a beats b)(rating A) + (P b beats a)(rating b)

option B: (P a beats b)(rating A) + (P b beats a)(rating b)

bliutwo commented 5 years ago

easier way:

bliutwo commented 5 years ago

just do a montecarlo simulation -trock

bliutwo commented 5 years ago

or do the math way, which is apparently harder!