Archery Statistics & Analysis

Archery Prediction Models Explained

August 20, 2026 / 10 min read

Archery Prediction Models Explained

Archery is deceptively simple to watch and fiendishly complex to model. For bettors, coaches and data scientists alike, accurate predictions require more than copying models from ball sports — they must respect bow type, match format, the 72‑arrow qualification benchmark, and the idiosyncratic tiebreak rules used by World Archery. This article walks through the main families of prediction models used for archery, explains why some approaches work better for recurve versus compound events, lays out common features and data sources, and gives practical advice for model evaluation — with bookmakers and bettors in mind.

Why archery needs tailored models

At international target events the competition has two distinct phases: a 72‑arrow qualification round that produces a continuous score used for seeding, and a head‑to‑head elimination phase that uses different scoring mechanics depending on bow type. Recurve individual matches use a set system (best of five sets, three arrows per set); compound individual matches use cumulative scoring (15 arrows total). These format differences change not only how matches are won but which statistics are predictive. Models designed for continuous-sum sports (football, tennis) often need structural changes before they can produce reliable archery forecasts. (worldarchery.sport)

Core data sources and features

  • Official competition results (qualification + elimination) from World Archery and organiser feeds — qualification scores (72 arrows) and match scores are primary inputs. (worldarchery.sport)
  • World Archery ranking points and the rules that define them (group weighting, period multipliers) for long‑term strength priors. Use the published World Ranking Calculation document when creating ranking‑based features. (documents.worldarchery.org)
  • Shot‑level or arrow‑impact data when available (target XY coordinates) to estimate per‑arrow shot distributions — recent engineering literature shows radial distance from centre follows a Rayleigh distribution for large datasets, which is useful for arrow‑level simulation. (journals.sagepub.com)
  • Event context: outdoor vs indoor, wind conditions, venue (range orientation), time of day and schedule compression (how many matches in a day). These alter variance and are commonly modelled as event‑level random effects. (documents.worldarchery.org)
  • Head‑to‑head history and seeding effects: top seeds face weaker opponents early, so direct H2H counts are often sparse and biased by tournament draw. See methods that model pairwise outcomes using partial ranking data. (academic.oup.com)

Model families — what they assume and when to use them

Below are the primary model families used in archery analytics. Each has trade‑offs: some are simple, fast and interpretable; others capture uncertainty and structure better but demand more data and compute.

Elo / rating systems (and extensions: Glicko, Plackett‑Luce)

Purpose: produce a continuously updated strength score for each archer based on match outcomes (and sometimes qualification results).

How it fits archery: rating systems can be adapted to include qualification scores (as provisional “wins” vs an expected opponent) or weighted by tournament importance. A Plackett‑Luce / Bradley‑Terry family model that uses partial rankings (qualification order and elimination outcomes) has been shown to produce fairer rankings for archery because it accounts for how competitive a tournament was. These systems are especially useful where head‑to‑head data are sparse but many tournaments exist. (academic.oup.com)

Pros: low data requirements, interpretable, easy to update in tournament time. Cons: can be overconfident for archers who compete rarely; need dampening (priors or activity thresholds) to prevent rating inflation from a few lucky results. (academic.oup.com)

Bradley‑Terry / Plackett‑Luce pairwise models

Purpose: model head‑to‑head match outcomes as a function of latent “ability” parameters for each archer.

How it fits archery: these models are a principled way to convert partial ranking data (qualification lists plus elimination match results) into probability estimates of one archer beating another. They are statistically efficient for tournaments where winners and losers are observable but full ordering is not. The Archery Rating implementation based on Plackett‑Luce is an example tailored to archery data. (academic.oup.com)

Logistic regression and generalized linear models

Purpose: estimate probability of a discrete outcome (win/loss) from features such as difference in qualification score, ranking points, recent form and environmental covariates.

How it fits archery: logistic models are an excellent baseline. For recurve set matches you can model the probability of winning a single set (3 arrows) using predictors derived from qualification averages; match win probability can then be computed by aggregating set probabilities under a simple Markov process. For compound cumulative formats, model expected total score (or probability of outscoring opponent) directly. Logistic models are easy to interpret and fast, but they assume conditional independence and linear effects unless extended.

Bayesian hierarchical models

Purpose: represent multiple sources of variation (archer ability, event difficulty, venue effects) and produce principled uncertainty estimates.

How it fits archery: hierarchical models let you pool strength across similar archers (by nation, season, bow type) when data are sparse, give honest credible intervals for predictions, and naturally include tournament‑level random effects (windy event → higher variance). They are the go‑to approach when you need calibrated probabilities rather than just point predictions. Practical downside: slower to fit and require expertise to choose priors.

Shot‑distribution + simulation (arrow‑level models)

Purpose: simulate matches from a per‑arrow spatial model of shot dispersion and judge proximity for tiebreakers.

How it fits archery: when arrow coordinates (x,y) or large samples of arrow outcomes are available, you can estimate the shot dispersion (Dall Park find a Rayleigh distribution for radial error) and then simulate arrows under match rules (sets and cumulative arrows) to estimate match probabilities directly. This explicitly models per‑arrow physics — useful for equipment or environmental studies and for high‑resolution forecasting in compound events where each arrow matters. (journals.sagepub.com)

Handling match format: recurve set system vs compound cumulative

Recurve individual matches assign set points for groups of three arrows; a player wins a set and receives two set points, a tie gives one each, and the target is the first to six set points. This discrete, stoppable format means that a single low set greatly affects match probability; models should therefore estimate set‑win probabilities and then derive match probability using a small Markov chain for best‑of‑five behaviour. The World Archery rules and event guides document these mechanics and their tiebreak procedures. (worldarchery.sport)

Compound matches use cumulative scoring: 15 arrows for individual matches (five ends of three arrows), with the highest total winning. For compound forecasts, modelling the distribution of total score (sum of 15 i.i.d. or weakly dependent arrow scores) is natural; the Central Limit Theorem often provides a good approximation for sums, or you can convolve the per‑arrow distribution estimated from shot‑level data. If ties occur, one‑arrow shoot‑offs are resolved by proximity to centre, so spatial shot models are directly useful here. (worldarchery.sport)

Feature engineering: what actually helps prediction

  • Qualification mean variance (72 arrows): excellent baseline predictor — it captures long‑range precision. (worldarchery.sport)
  • Recent match form: last N matches or tournament performance, weighted by recency.
  • Head‑to‑head history: useful when plentiful and not biased by seedings; otherwise include as a weak prior. (academic.oup.com)
  • Event weather covariates: wind, outdoor vs indoor, time pressure (back‑to‑back matches) — include as random effects in hierarchical models. (documents.worldarchery.org)
  • Bout structure features: for recurve, features that predict clutch performance (variance of 3‑arrow averages) can matter more than absolute mean. For compound, precision (low variance) is often more predictive. (journals.sagepub.com)

Model validation and evaluation metrics

For archery predictions you should evaluate both calibration (do predicted probabilities match observed frequencies?) and discrimination (can the model separate winners from losers?). Recommended metrics:

  • Brier score — measures mean squared error of probability forecasts and rewards calibration.
  • Log loss (cross‑entropy) — penalises badly confident wrong predictions.
  • Reliability diagrams and calibration curves — visual check of over/under‑confidence.
  • Return on investment / expected value (EV) simulations — for bettors: combine model probabilities with actual market odds to measure theoretical edge; beware that low liquidity and high bookmaker margins can eliminate apparent edges.

When backtesting, use tournament‑level cross‑validation (leave entire tournaments out) rather than match‑level random splits, because matches within the same tournament share environment and selection biases. Use rolling windows for time‑sensitive parameters (skill evolves across seasons).

Practical modelling pitfalls: sample size, selection bias and correlation vs causation

Key cautions for archery analysts:

  • Small sample sizes for head‑to‑head data: many archers have few elimination matches at top level. Ratings that ignore activity thresholds can be unstable. Consider limiting ratings to archers with minimum event counts or express uncertainty with wider credible intervals. (academic.oup.com)
  • Seeding and selection bias: qualification seeding shapes the elimination tree. Top seeds face weaker early opponents, so naive win‑rate conditioning can overstate true skill differences. Use models that account for expected opponent strength. (worldarchery.sport)
  • Format-dependent predictive signals: a high qualification score is predictive of medal finishes overall but may be less predictive of individual recurve match outcomes because the set system increases variability. Do not conflate qualification dominance with match invincibility. (worldarchery.sport)
  • Correlation ≠ predictive causation: equipment changes, coaching selection or fitness interventions that correlate with improved scores need counterfactual designs (before/after with controls) to assess real causal impact. Treat correlation‑based features cautiously when projecting future match outcomes.

Bookmakers and archery markets — what bettors should know

Archery markets are event‑driven and not continuously available in most sportsbooks. Major providers publish sport‑specific rules for archery that indicate markets (match betting, outright/tournament markets) and settlement policies (use of official result providers, treatment of unplayed matches, extra arrows count). These published rules show that sportsbooks maintain explicit procedures for archery markets but typically offer them around Olympic Games, World Archery Championships, World Cup stages and continental events. Before assuming continuous coverage, verify availability with the individual bookmaker for the event you plan to bet on. (help.bet365.com)

From an archery‑bettor perspective:

  • Liquidity is often low — prices can be wide and moves may be large if the bookmaker receives new information.
  • Settlement rules matter (e.g., “extra arrows count” and whether outright markets are void if an archer doesn’t start). Review the operator’s published archery rules for each wager. (help.bet365.com)
  • Model edge must overcome bookmaker margin and account for limited markets; even a calibrated 60% win probability on small stakes can lose when spreads are wide. Conduct EV simulations using real market snapshots before staking.

Responsible gambling note: betting involves risk. This article is informational, not financial advice. Only bet what you can afford to lose and consult local laws and responsible‑gambling resources before placing wagers.

Worked example (conceptual): forecasting a compound 15‑arrow match

Outline (no real odds):

  1. Estimate each archer’s per‑arrow mean and variance from their recent competition arrow totals or from a shot‑distribution model (Rayleigh radius → translate to expected 10/9/8 probabilities). (journals.sagepub.com)
  2. Assume arrow scores are approximately independent (or model short‑range autocorrelation if data permit), and compute expected total score for 15 arrows and its variance (sum of per‑arrow expectations and variances).
  3. Use a normal approximation on the 15‑arrow total to estimate probability that Archer A outscored Archer B (P(totalA > totalB)).
  4. Account for tiebreak probability and one‑arrow shoot‑off resolution using spatial proximity models when necessary.

This approach shows why shot‑level data (or a good proxy from many 72‑arrow qualification scores) materially improves accuracy in compound matches: each arrow contributes directly to the match outcome and total variance matters. For recurve, repeat the process at the set level (3‑arrow blocks) and fold the set‑win probabilities into a best‑of‑five calculation instead.

Model selection checklist for archery projects

  • Define the target: per‑set win, match win, tournament outright Different targets change the data and model choice.
  • Inventory available data: arrow coordinates, per‑arrow scores, qualification totals, tournament contexts and weather. If only qualification scores exist, prefer rating/Bradley‑Terry/logistic baselines; if arrow‑level data exist, consider shot‑distribution simulation.
  • Decide on uncertainty reporting: probability forecasts with credible intervals are