Skip to main content
Version: 3.0.0

Calculation of scores and results

The goal of this chapter is to be easily understood by the wider community of our sport as well as being clear and accurate as to leave no questions on how the calculations will be implemented. To meet both goals, some sections will be accompanied by an expansion panel containing examples and simplified explanations using less math formulas.

Averaging

If there are two judges of a type the two scores are averaged.

Example
JudgeScore
Judge 1112
Judge 2114

Gives an average of 112+1142=113\frac{112 + 114}{2} = 113

If there are three judges of a type the two closest scores are averaged, if the scores are equally spaced the benefit goes to the athlete and the two higher scores are averaged.

Example
JudgeScore
Judge 1112
Judge 2114
Judge 3118

Since judges 1 and 2 are closer (2 clicks) than judges 2 and 3 (4 clicks), scores from judges 1 and 2 are averaged for a total score of 113.

A similar situation:

JudgeScore
Judge 1112
Judge 2115
Judge 3118

Since judges 1 and 2 are apart by 3 clicks and judges 2 and 3 are also apart by 3 clicks, the higher pair of scores (judges 2 and 3) are used. Those two scores are averaged for a score of 116.5.

If there are four or more judges of a type the highest and lowest scores are dropped, and the remaining scores are averaged.

Judge1+Judge2+Judge3+Judge4JudgemaxJudgemin42\frac{\text{Judge}_1 + \text{Judge}_2 + \text{Judge}_3 + \text{Judge}_4 - \text{Judge}_{max} - \text{Judge}_{min}}{4 - 2}
Example
JudgeScore
Judge 1112
Judge 2115
Judge 3118
Judge 4119
Judge 4121

Judge 1 and Judge 5 who has the lowest and highest scores are dropped leaving judge 2, 3 and 4 which are then averaged 115+118+1193=117.33\frac{115 + 118 + 119}{3} = 117.33

Rounding

All variables are calculated without applied roudning, except for Capital Letter Variables and functions (duch as RR, DD, PP, MM, FpF_p, L(x)L(x)) which is roundee to two decimal places

Example, If the variable is RR, then R=R100100R = \frac{\lfloor R * 100 \rceil}{100}