Reading a binary watch, tips & tricks

I first learnt binary as a kid at school and on a few (admittedly rare) occasions it has been useful to know it for my day job (since I work in IT). However these days, it is primarily just something I use to read my binary wrist watch.

What I have found after wearing that watch on and off over a couple of years is that it rapidly got easier to read, at least for the range of numbers found on clocks (‘1-59’).

How to read a binary watch

On my watch, the top row shows the current hour. The LEDs here represent ‘8’, ‘4’, ‘2’ and ‘1’ (read from left to right). The bottom row displays the current minute and the LEDs represent ’32’, ’16’, ‘8’, ‘4’, ‘2’ and ‘1’. In short, you just need to add up all the lit LEDs, to find the decimal numbers representing the hour and minute.

Once you have the basics down, here are a handful of tricks and shortcuts that are useful for quickly reading a binary watch.

In this guide I will represent lit LEDs as 1 and unlit LEDs as 0. For the most part I will just list the right-most positions (assume the rest are unlit).

Numbers that end with 0 are even

Or put another way, numbers that end with 1 are odd.

  1 = 1
 10 = 2
 11 = 3
100 = 4

Most people will see this immediately but it is worth keeping this in mind as it is handy as a quick check that there might be something wrong with your calculation, i.e. if the number you calculate is even but what you see ends with 1… you did it wrong! 😉

Doubling patterns

This is also obvious when you really think about it but something that I had not noticed until I started using the watch. The point here is that all patterns of smaller numbers double when moving one step to the left.

Consider a number like 11. That is fairly easy to read as ‘3’. Once you understand this any number containing that pattern is also pretty obvious.

   110 = 6
  1100 = 12
 11000 = 24
110000 = 48

Similarly 101 is ‘5’ and so

  1010 = 10
 10100 = 20
101000 = 40

111 is ‘7’ and thus

  1110 = 14
 11100 = 28
111000 = 56

Since 1001 is ‘9’

 10010 = 18
100100 = 36

If you recall the shortest version of a pattern, you can just double it as it moves left by each position.

Memorise frequently used patterns/numbers

In addition to quickly memorising many of the small patterns from use (and their multiples), you might want to remember commonly used times, e.g 1111 [15], 11110 [30] and 101101 [45] (for the half and quarters of the hour). That last one is also interesting looking, so easy to recall.

Always work out the minutes first

More often than not you know the hour already, additionally it is usually a smaller number.

Many LED based binary watches give you a few seconds (after a keypress) to calculate the time before all the LEDs dim. If you work out the minute first, that will often be enough. And with the more limited number of possible times for the hour, you may read it at a glance anyway (as you will soon have all those positions memorised).

One less

Numbers such ‘3’, ‘7’, ’15’, ’31’ are really easy to spot because they just solid blocks of ‘1s’.

   11 = 3
  111 = 7
 1111 = 15
11111 = 31

Compare those to the next number in sequence to see what is going on.

100 = 4
011 = 3
1000 = 8
0111 = 7
10000 = 16
01111 = 15
100000 = 32
011111 = 31

The number immediately proceeding a major number like ‘2’, ‘4’, ‘8’, etc. will have a stack of 1s to the right.

Another way to think of that is that you just invert the numbers from the right-most 1 to decrease the number by ‘1’.

101100 = 44
101011 = 43

Calculate unknown numbers using ones you already know

Take a number like 110111. Initially one might work that out with lots of small additions.

1    1    0    1    1    1
32 + 16 + 0  + 4  + 2  + 1 = 55

Not hard but it takes a little time to do in your head. I would tend to look at this other ways. There are two overlapping patterns I instantly recognise here, 110000 is ’48’ and 000111 is ‘7’, so ’48+7′ = ’55’. Or perhaps, I would just count back from a higher number I recognise. I know 111000 is ’56’. 110111 is one less (if you invert the numbers from the right-most 1).

If you look at binary numbers frequently and already know 111000 (I mentioned it above), you can spot that last one in an instant.

Final thoughts

These are just a few of the tricks I have picked up to show how you can interpret binary in decimal terms more easily (without calculating every number). For the most part I can now read my binary watch pretty quickly. Often at a glance and in the worst case, usually within a couple of seconds. No that is not as fast as a normal digital or analog but quick enough to make it useable and useful. I also suspect that if I used it more (I rotate through a bunch of odd watches) I could reliably match the speed of (accurately) reading an analog clock. You do after all find yourself just memorising a bunch of positions (through regular use), so the amount of calculation you have to do, rapidly drops.

I will add however that there is one problem that occasionally catches me out with binary watches that use LEDs specifically. In pitch black it can sometimes be hard to pick out the positions of the off state LEDs. Thus a number like 11 can look similar to 110 (they both just look like two lit LEDs that are next to each other). And that my friends is how I once woke at 06:00 in the morning and started to make coffee and prepare for the day, only to later realise it was actually 03:00! 😆


[✍ 2023-11-06 @14:06 +0100]

Bonus trick for approximation

Here is another small trick that was quite handy when I first started using the watch (and was much slower at calculation).

You can sort of use a binary watch for glancing approximation (similar to how many use analog watches) if you only need to know roughly where you are in the hour, rather than the absolute minute. This is usually “good enough” for upcoming meetings or events, which tend to fall on the hour or half hour.

The minute line is 6 LEDs long but you only need look at the left-most two to do this. As an added bonus, if you have an event up coming you will often already know the current hour anyway. In that case you can ignore the hour line entirely and just focus on these first two LEDs on the minute line.

If neither are lit you are within the first quarter of the hour.

00[…] = '0-15' mins

If only the right one is lit you are over the first quarter but most likely not half way through the hour.

01[…] = '16-31' mins

If only the left one is lit you are over half way through the hour but probably not into the last quarter (or only just!).

10[…] = '32-47' mins

If both are lit you are over the final quarter and most likely within the last 10 minutes of the hour.

11[…] = '48-59' mins

[✍ 2023-11-07 @09:04 +0100]

In the real world you will not see these two LEDs in isolation. You will still have a vague awareness of the others, even if you do not attempt to properly calculate them. More lights (particularly those close to the two right-most LEDs) will give you a rough feeling for how close you are to the crossover times.

How to use the AM/PM notation when talking about time

In the US (and a few other places) the 24 hour clock is not commonly used or understood by the average person. When context cannot distinguish between two similarly numbered hours from different parts of the day, AM or PM is typically appended. However, if you find AM/PM confusing, then the following might help when communicating with others who are not familiar with the 24 hour clock. It is also handy for reading any times written this way (e.g. plane, train or bus times).

The short version

  • Consider the day divided into two, equal, twelve hour chunks, the first called ‘AM’ and the second ‘PM’.
  • It might help to think ‘A is before P‘ [alphabetically], if you struggle to recall the order.
  • These sections start with ‘12’ as the zero hour, thus: 12AM, 1AM, 2AM … 10AM, 11AM; followed by 12PM, 1PM, 2PM … 10PM, 11PM
  • When talking about the ’12:00′ hours themselves, it is preferable to avoid the AM/PM labels altogether and just say ’12 midnight’ or ’12 noon’ (midday).

To expand on that last point, if you need to say 12 noon plus some arbitrary amount of minutes, say something like, ’12:30 in the afternoon’. For times immediately following midnight, things like ’20 minutes past midnight’ (00:20) or ‘quarter to 1 in the morning’ (00:45) also work well and should be clearly understood by the majority of people.

Why AM/PM is difficult

AM/PM is confusing for a couple of reasons. Firstly while common in the English speaking world, the acronym is not in English but rather in Latin, thus making it hard for people to recall. Secondly the actual meaning makes no logical sense in relation to the ’12’ hours.

AM = Ante Meridiem (before noon [midday])
PM = Post Meridiem (after noon [midday])

So here is the problem in a nutshell. At exactly 12:00 midnight you could arguably be both AM or PM depending on which noon you refer to (the previous or the forthcoming), since they are equidistant from a time perspective. While at exactly 12:00 midday, you are definitively neither AM nor PM because it is precisely ‘noon’.

The most common way to write these is with midnight as 12AM and noon/midday as 12PM. The reason for this is that while 12:00 midday is neither before or after noon, the rest of the minute and second subdivisions of that hour are clearly PM (after noon) and thus you might as well give 12:00 midday the PM label as well, to keep it in same group. It’s not logically, 100% correct but it is the least bad choice between AM and PM when neither really work. Similarly 12 midnight cannot be categorised cleanly but 12:11 is obviously AM (before noon) in relation to the closest noon (the one happening on the same day). So again midnight as 12AM is arguably the least bad option.

I think it is worth knowing the AM/PM time notation if you interact with people from the US (or others that use this system) or if you are planning a holiday there. It helps to be able to read things like timetables or digital clocks that use the AM/PM notation. However I would strongly suggest you avoid saying AM/PM alongside ’12’ when talking to other people. The point here after all is to be more precise, not more ambigious, yet you will occasionally find people who have grown up with AM/PM notation who have a different interpretation of the correct label for the ’12’ hours. That might be because they learnt the meaning and found another argument to favour the other option, or maybe because it just ‘feels weird’ to think of 12 as the starting hour. No matter, if you simply say ’12 noon’ or ’12 midnight’ you should be understood.

AM/PM versus the 24 hour clock

I just wanted to end this stating, this is not a promotional piece trying to encourage the use of AM/PM. I personally prefer the 24 hour clock. The post is just to give tips on how to read and express time with AM/PM in case you ever needed to. That is all, don’t read into it more than that or accuse me of promoting some AM/PM agenda! 😜

† Some people will state I am wrong and indeed you can easily find references to midnight being labelled as 12PM online 😆. I am just stating the ‘most common’ way to interpret these two times, so you can have some level of confidence when reading a railway timetable. And in all honesty it does not matter if you actually agree with me. This just re-emphasises the point that you should avoid using AM/PM at all when talking about ’12’, if you can. 😉