Chess Tournament Points Calculator
Quickly find out how many more points you need to hit a target score percentage in a Swiss tournament. Useful mid-tournament when planning which results you need to qualify or finish in prize positions.
About this calculator
In Swiss system tournaments, players accumulate points across rounds: 1 for a win, 0.5 for a draw, 0 for a loss. A common goal is reaching a target score percentage — for example, scoring 70% of all available points. The points still needed is calculated as: pointsNeeded = max(0, (targetPercentage / 100) × totalRounds − currentPoints). The max(0, …) wrapper ensures the result never goes negative (you've already surpassed your target). Remaining rounds equal totalRounds − roundsPlayed, so you can compare pointsNeeded against remaining rounds to judge whether the target is mathematically achievable. This is especially useful in team events or norm tournaments where a specific score percentage is required.
How to use
Imagine you are in a 9-round tournament, have played 5 rounds, and have earned 3 points. Your target is 67% (a common IM norm threshold). Points needed = max(0, (67/100) × 9 − 3) = max(0, 6.03 − 3) = max(0, 3.03) ≈ 3.03 points. You have 4 rounds remaining, so you need roughly 3 points from 4 games — meaning at least 3 wins (or some combination of wins and draws). The target is still achievable with a strong finish.
Frequently asked questions
How are points calculated in a Swiss system chess tournament?
Each player earns 1 point for a win, 0.5 for a draw, and 0 for a loss in every round. Points accumulate across all rounds, and players with similar totals are paired together in each subsequent round. Unlike round-robin tournaments, not every player faces every other player. Final standings are determined by total points, with tiebreaks (such as Buchholz or Sonneborn-Berger) used when players are level.
What score percentage do I need to achieve a FIDE chess norm?
FIDE norm requirements vary by title. For an International Master (IM) norm you typically need a performance equivalent to scoring around 66.7% against a field with an average rating above 2230. A Grandmaster (GM) norm requires roughly the same percentage against a field averaging above 2380. The exact score depends on the average rating of your opponents — a stronger field means a lower absolute score suffices. Always verify with FIDE's current regulations, as requirements can be updated.
Why does a Swiss tournament use a target percentage rather than a fixed points total?
A fixed points target would be unfair because longer tournaments offer more points overall. Expressing a goal as a percentage normalises it across events of different lengths — 67% of 9 rounds (6.03 pts) represents the same level of performance as 67% of 11 rounds (7.37 pts). This makes it straightforward to set consistent qualification thresholds and norm requirements regardless of the specific number of rounds in an event.