Can You Hack Gymnastics?
This Week's Fiddler
Say gymnast A has difficulty score 6 and gymnast B has difficulty score 5. Let their execution scores be and , respectively. Then A wins both scoring methods if and , and B wins with both scoring methods if and .
For A's victory, multiplicative scoring is a stronger requirement up until , where additive scoring becomes a stronger requirement. So we can set up the following integral to represent the probability of a decisive result for A, where the additive and multiplicative scoring methods agree:
For B's victory, additive is stronger up until , where multiplicative scoring becomes a stronger requirement. Note though that because can no longer fit the multiplicative requirement beyond that. So the following integral is made for B:
And their sum is the final probability, which is , or about 96.17%.
Answer: 577/600
Extra Credit
Monte-Carlo simulation:
import random
random.seed(12)
T = 10**7
success = 0
for t in range(T):
a, b = 10 * random.random(), 10 * random.random()
alpha, beta = 10 * random.random(), 10 * random.random()
if (alpha + a > beta + b) == (alpha * a > beta * b):
success += 1
print(success / T)
Output:
0.9166818
Though I suspect an exact integral could work here too 🤔
Answer: 91.7%