Running towards round numbers

TLDR

  • Whenever I ran in 2019, my mileage tended to be an integer.
  • This tendency was weaker for shorter runs (< 11 miles) and stronger for longer runs (>= 11 miles).
  • Irrespective of a run’s mileage, there was never a run that ended less than a tenth of mile from an integer (i.e., I never ran something point nine something miles).
  • Apparently my running was influenced by the appeal of integer mileage, or the regret of not reaching such a number.
  • Perhaps running programs should push us to to just below a round number, and then our own motivation can take over from there.

I ran the most I ever did in 2019. Each time I ran, I recorded my mileage to track my progress and stay motivated.

I was recently reminded of a work on how influential round numbers can be. For example, students are more likely to retake the SAT when their scores fall just below a round number, and marathon finising times tend to bunch just below 4 hours rather than above it. I decided to look for evidence of this phenomenon in my own running by looking at how much my mileage on each run deviated from an integer.

I began by treating each positive integer as a round number and calculated how much each run’s mileage deviated from the closet integer.

# amount off from closest integer mile
ifelse(test = run19$mileage - floor(x = run19$mileage) <= 0.5, 
       yes = run19$mileage - floor(x = run19$mileage), 
       no = (ceiling(run19$mileage) - run19$mileage) * -1) -> run19$delta_closest_int

# view last few lines of data
run19 %>% tail() %>% knitr::kable()
date mileage delta_closest_int
185 2019-12-08 3.36 0.36
186 2019-12-21 4.00 0.00
187 2019-12-24 3.53 -0.47
188 2019-12-29 3.20 0.20
189 2019-12-30 3.19 0.19
190 2019-12-31 4.01 0.01

The relationship my mileage and the deviation from the closest integer shows that apparently my running was also influenced by the round numbers. However, the influence much weaker for shorter runs (< 11 miles) and much more apparent for longer runs (>= 11 miles). There were some exceptions when runs were longer: race distances that aren’t integer lengths and one run where the weather was so hot that I had to cut it short.

Notably, there was never a run that ended less than a tenth of a mile from an integer (grey rectangle). Just like students trying to avoid a score less than a round number or marathoners trying finsh below 4 hours, I also apparently avoided runs that ended just shy of a nice, round integer mile.

To confirm the influence of round numbers on my running, I extracted the first digit after the decimal in my mileage distances and looked at their distribution. As expected, there was never a run whose mileage had a 9 in the tenths place (i.e., no run ended in something point nine something miles).

This distribution indicates that I may have also treated 0.5 as a round number goal during my runs. Just as runs got less frequent as their mileage approached an integer (0.8 less common than 0.7, which was less common than 0.6), the same pattern appears for 0.4, 0.3, and 0.2.

It’s as if I was telling myself during my runs, consciously or not, “try to run something and a half miles” or “try to hit the next mile.” But once I got just above it, it didn’t matter anymore until I got close to the next round number.

# tenth place digit
run19$tenth_place_digit <- as.integer(run19$mileage * 10) %% 10

# view last few lines of data
run19 %>% tail() %>% knitr::kable()
date mileage delta_closest_int tenth_place_digit
185 2019-12-08 3.36 0.36 3
186 2019-12-21 4.00 0.00 0
187 2019-12-24 3.53 -0.47 5
188 2019-12-29 3.20 0.20 2
189 2019-12-30 3.19 0.19 1
190 2019-12-31 4.01 0.01 0

Of course, the specific training plans I followed, which prescribed certain mileages and lengths of time to run, influenced these data. And training plans tend to prescribe round numbers. Even if this was the underlying mechanism rather than my own psychology, it’s still pretty neat to see the round number phenomenon play out in your own life.

Data scientists at Strava should see if this happens at scale with the many runners who use that app. And if this holds true, perhaps we should be motivated to run a distance just below a round number, and from there, our own motivation can take over. After all, it’s presumably to motivate someone to run 3.9 miles rather 4.0 miles. And once the runner hits 3.9, they might as well go another a tenth of a mile.

I also wonder if the stronger influence of round numbers for longer or more involved endeavors can be generalized beyond running. For example, among people who leave their jobs, are they more likely to hit a round number work anniversary (X years as opposed to X years and Y months) the longer they stay at that company? Somebody at LinkedIn should get on this.

Avatar
Jack Cao
Quantitative Researcher

Related