Skip to main content
Logo image

Section 3.5 Clock Arithmetic

In the following we give applications of the combination of the operation mod and the addition of integers called clock arithmetic.
Recall that the operation mod yields the remainder of integer division. That is, for an integer a and a natural number b the number r=amodb is the number such that a=(qb)+r for some integer q and r is a non-negative integer and r<b.
Applications of the operation mod can be found in arithmetic with hours, days of the week, and months. We start with examples of adding hours and then relate this to using addition and the operation mod.
(a) We conduct the familiar addition of hours and replace 12 on the clock face by 0.
(b) We wrap the number line (compare Figure 1.2) around a circle such that all numbers with the same remainder from division by 12 are in the same position.
Figure 3.61. Two ways of picturing arithmetic modulo 12.

Example 3.62. 12 hour clock.

When using the 12 hour clock we have:
  1. An hour after 11 o’clock it is 12 o’clock.
  2. Two hours after 11 o’clock it is 1 o’clock.
  3. 10 hours after 11 o’clock it is 9 o’clock.
  4. 20 hours after 11 o’clock it is 7 o’clock.
  5. 25 hours after 11 o’clock it is 12 o’clock.
These operations can be considered as adding hours to a time. To compute these additions we add the hours and then subtract 12 as many times as necessary to obtain a number between 1 and 12. With a similar method we had computed the remainder in Algorithm 3.6.
The main difference between the two approaches is that using the 12 hour clock we obtain numbers between 1 and 12 and when computing remainders we obtain numbers between 0 and 11. That is, we replace 12 by 0, as shown in Figure 3.61.(a). We call this arithmetic modulo 12. Figure 3.61.(b) illustrates how the number line wraps around the clock face in arithmetic modulo 12. The remainder modulo 12 of two numbers is the same if they differ by a multiple of 12.

Example 3.63. Addition mod12.

We formulate the computations from Example 3.62 using remainders. Recall that we denoted the remainder of the division of a by 12 by amod12.
  1. (11+1)mod12=12mod12=0
  2. (11+2)mod12=13mod12=1
  3. (11+10)mod12=21mod12=9
  4. (11+20)mod12=31mod12=7
  5. (11+25)mod12=36mod12=0
When the numbers are larger than 12 we can simplify our computations by applying Theorem 3.46.

Example 3.64. Addition mod12.

By Theorem 3.46 that we can add first or take the remainder first, and we will get the same answer, so in Item 4 and Item 5 above, we could have done the following:
  1. (11+20)mod12 =((11mod12)+(20mod12))mod12 =(11+8)mod12=19mod12=7
  2. (11+25)mod12 =((11mod12)+(25mod12))mod12 =(11+1)mod12=12mod12=0
The second computation appears to have more steps, but the arithmetic can be much simpler. In practice we combine both approaches.
In the remainder of the section we solve every day problems with clock arithmetic.

Problem 3.65. 79 hours from 4 o’clock.

What time is it in 79 hours if it is 4 o’clock now ?
Solution.
We have (4+79)mod12=83mod12=11. Thus 79 hours from now, it is 11 o’clock.
The same result can also be obtained by first computing 79mod12=7 and then (4+7)mod12=11mod12=11.
Try for yourself in Checkpoint 3.66.

Checkpoint 3.66. Hours from now with 12 hour clock.

We use the 12 hour clock. Assume it is 8 o’clock. What time will it be 49 hours from now ?
  • select
  • 12 o’clock
  • 1 o’clock
  • 2 o’clock
  • 3 o’clock
  • 4 o’clock
  • 5 o’clock
  • 6 o’clock
  • 7 o’clock
  • 8 o’clock
  • 9 o’clock
  • 10 o’clock
  • 11 o’clock
Everything we have done for hours above also works for other counts that wrap around. For example, when answering questions about weekdays we compute mod7.

Problem 3.67. 110 days from Friday.

Which day of the week is it in 110 days from today if today is Friday ?
Solution.
The days of the week wrap around after seven days. When adding days and we want the result as a weekday, any multiples of 7 do not change the day of the week. Instead of adding 110 days we add 110mod7=5 days. So 110 days after Friday is the same day of the week as 5 days after Friday, namely Wednesday.
Try for yourself in Checkpoint 3.68.

Checkpoint 3.68. Days from now.

If today is Thursday. What day will it be 58 days from now?
  • select
  • Monday
  • Tuesday
  • Wednesday
  • Thursday
  • Friday
  • Saturday
  • Sunday
Similarly we can answer question about months. As there are 12 months in a year we compute mod12.

Problem 3.69. 721 months from November.

Which month is it 721 months from now if this month is November?
Solution.
Months wrap around after 12 months. We have 721mod12=1. Since December is one month after November, 721 months from now, it will be December.
Try for yourself in Checkpoint 3.70.

Checkpoint 3.70. Months from now.

Assume it is December. What month will it be 73 months from now ?
  • select
  • January
  • February
  • March
  • April
  • May
  • June
  • July
  • August
  • September
  • October
  • November
  • December
When we use the 24 hour clock we compute mod24. Use this in Checkpoint 3.71.

Checkpoint 3.71. Hours from now with 24 hour clock.

We use the 24 hour clock. Assume it is 18:00 hours. What time will it be 59 hours from now ?
  • select
  • 0:00 hours
  • 1:00 hours
  • 2:00 hours
  • 3:00 hours
  • 4:00 hours
  • 5:00 hours
  • 6:00 hours
  • 7:00 hours
  • 8:00 hours
  • 9:00 hours
  • 10:00 hours
  • 11:00 hours
  • 12:00 hours
  • 13:00 hours
  • 14:00 hours
  • 15:00 hours
  • 16:00 hours
  • 17:00 hours
  • 18:00 hours
  • 19:00 hours
  • 20:00 hours
  • 21:00 hours
  • 22:00 hours
  • 23:00 hours
In the video in Figure 3.72 we review the material covered above.
Figure 3.72. Clock Arithmetic by Matt Farmer and Stephen Steward