How long does it take to count to 1 million? 1 billion? 1 trillion?

Posted In: Math | Programming

My son likes large numbers (like septillion, googol and googolplex) and once asked me how long it would take to count to septillion (which is 1 followed by 24 zeros).  I told him it would take longer than the age of the universe to do that, so he started working his way down.  He asked me about counting to one million.  I did a little math (assuming one number per second) and got about 11-12 days . . . but then thought, the large numbers (like 658,243) take more than a second to say.

Looked on the web a little to see if anyone else had done a more sophisticated calculation.  Lots of calculations were like my own (assuming one number per second).  Others acknowledge that it would take longer for large numbers and made assumptions about what that would be.  But nothing definitive, so I thought I’d make one.  This counting calculator is based on the number of syllables in every number and counts all the syllables you’d have to pronounce in order to count from one to one million (or other numbers).



There is also a Spanish and Espanol number version of the calculator.

If the calculator is not self-explanatory, there are several steps to follow:

  1. First time yourself counting to 20.
  2. Based on your time, the calculator determines your counting rate in syllables per second (there are 32 syllables in the numbers between one and twenty).  You can try to count the number of syllables yourself.
  3. Specify what number you’d like to count to, the default is one million but you can specify one billion or any number below one trillion.
  4. Specify how many hours per day you think you can count.  Remember you need to eat and sleep and take breaks too.
  5. Push the button and it’ll tell you how long it takes to count to your target number.

You can vary different parameters (counting speed, hours per day and target number) to see how long counting might take. (Spoiler, if you count to large numbers, it can take a very long time!)

I also decided to plot the number of syllables in each number between one and a million.  Not totally straightforward to plot one million points in an interactive fashion (where you can hover over the plot to see what numbers have how many syllables) so I ended up making a static image in R. It also shows the cumulative average number of syllables when counting up from one to the numbers below one million.
number of syllables per number from one to a million
Here’s another one that’s somewhat annotated so you can see what the peaks and troughs are.
number of syllables per number from one to a million
The numbers with the lowest number of syllables are the simplest numbers with the fewest words (i.e. one thousand, one million) while the numbers with the most syllables are the ones with the most words (i.e. seven hundred fifty six thousand four hundred twenty three). This is why the range of syllables is highest when you get over one hundred thousand. Seven has more syllables (2) than the other numbers between one and ten, and seventy has more syllables (3) than the other numbers when counting by tens. So 77 has the most syllables of all numbers below 100. The first set of peaks highlighted on the plot are due to 177, 277, 377 . . . 977, with a peak at 777 below 1000. The 2nd set is due to 1777, 2777, etc.
The troughs follow the same pattern where 100, 200 . . .900 have the same number of syllables, except for 700, which has one more. Same is true of thousands, tens of thousands and hundreds of thousands.  The number under one million with the most syllables is 777,777, which has 20 syllables.
You can test the algorithm used to generate the word number from the number digits and the calculated number of syllables.  The program skips the word “and” that people often use in numbers like “four hundred and twenty three” and just outputs “four hundred twenty three”.

Update: I tried to upgrade this calculator from going up to 1 trillion to handling a septillion, but I found out that Javascript can only hand up to about 9 quadrillion before breaking down.  This mini-calculator now goes up to about 9 quadrillion.

 

Program and Data: The program was written in Javascript and runs locally in your browser.  The static plots were generated in R (R Studio) from the output of the Javascript program.




16 Comments »


16 Responses to How long does it take to count to 1 million? 1 billion? 1 trillion?

  1. FINALLY a tootsie pop lick counter assist(or)![humour on something that makes learning fun] Thank you for the site and work that goes into it.

  2. junnyboi says:

    cool

  3. chris says:

    I notice lots of visitors from Brazil here. Welcome. Can anyone tell me why it has gotten popular in Brazil so suddenly?

    Eu noto muitos visitantes do Brasil aqui. Bem vinda. Alguém pode me dizer por que ele se tornou popular no Brasil tão de repente?

  4. […] has planteado alguna vez cuánto tardarías en contar hasta un millón? Pues ya tienes la respuesta. En ‘Engaging Data’ también se lo plantearon y han […]

  5. […] has planteado alguna vez cuánto tardarías en contar hasta un millón? Pues ya tienes la respuesta. En ‘Engaging Data’ también se lo plantearon y han […]

  6. Fred says:

    I remember there was a guy counting to 1 million on a livestream some 10 years ago or so. Took him 2 months if i remember correctly. URL was millioncount.com

  7. redditUser says:

    hit f12 to open console,

    var countToAMillion = () => {
    console.time(‘time to count to a million:’)
    let i = 0;
    while (i < 1000000) {
    console.log(i)
    i++
    }
    console.timeEnd('time to count to a million:')
    }

    countToAMillion()
    time to count to a million: 92372.07104492188ms

    ~93 seconds to make your browser do it for you.

  8. severin says:

    So if Eminem was able to count in his record speed for 24 hours a day he’d make it to one million in 12.2 days.

  9. Mikeguitar says:

    I’m now very late for work. Thanks, Reddit.

  10. Reader says:

    NEAT! WOULD BE COOL IF THIS ALSO WORKED IN OTHER LANGUAGES!

  11. Shelle says:

    Thanks for doing this! Found on Reddit, will share w/kiddos.

  12. SonWBrokenArms says:

    shoutout to all the redditors boutta see this post

  13. I. Roll says:

    Glad to see there’s still important journalism being done in this country.

  14. janet says:

    this is super awesome. my kids love playing with this.

Leave a Reply

Your email address will not be published. Required fields are marked *