Skip to ContentGo to accessibility pageKeyboard shortcuts menu
OpenStax Logo
Contemporary Mathematics

3.7 Clock Arithmetic

Contemporary Mathematics3.7 Clock Arithmetic

Three hands are shown. Two are working on a single laptop while a third holds a credit card.
Figure 3.40 If a credit card number is entered incorrectly, error checking algorithms will often catch the mistake. (credit: modification of work “Senior couple at home checking finance on credit card from above” by Nenad Stojkovic/Flickr, CC BY 2.0)

Learning Objectives

After completing this section, you should be able to:

  1. Add, subtract, and multiply using clock arithmetic.
  2. Apply clock arithmetic to calculate real-world applications.

Online shopping requires you to enter your credit card number, which is then sent electronically to the vendor. Using an ATM involves sliding your bank card into a reader, which then reads, sends, and verifies your card. Swiping or tapping for a purchase in a brick–and-mortar store is how your card sends its information to the machine, which is then communicated to the store’s computer and your credit card company. This information is read, recorded, and transferred many times. Each instance provides one more opportunity for error to creep into the process, a misrecorded digit, transposed digits, or missing digits. Fortunately, these card numbers have a built-in error checking system that relies on modular arithmetic, which is often referred to as clock arithmetic. In this section, we explore clock, or modular, arithmetic.

Adding, Subtracting, and Multiplying Using Clock Arithmetic

When we do arithmetic, numbers can become larger and larger. But when we work with time, specifically with clocks, the numbers cycle back on themselves. It will never be 49 o’clock. Once 12 o’clock is reached, we go back to 1 and repeat the numbers. If it's 11 AM and someone says, “See you in four hours,” you know that 11 AM plus 4 hours is 3 PM, not 15 AM (ignoring military time for now). Math worked on the clock, where numbers restart after passing 12, is called clock arithmetic.

Clock arithmetic hinges on the number 12. Each cycle of 12 hours returns to the original time (Figure 3.41). Imagine going around the clock one full time. Twelve hours pass, but the time is the same. So, if it is 3:00, 14 hours later and two hours later both read the same on the clock, 5:00. Adding 14 hours and adding 2 hours are identical. As is adding 26 hours. And adding 38 hours.

An analog clock with the hour hand pointing to 3. A clockwise arrow around the clock is labeled 12 hours later.
Figure 3.41 Clock showing 3:00 with arrow going around the clock one full time, or 12 hours

What do 2, 14, 26, and 38 have in common in relation to 12? When they are divided by 12, they each have a remainder of 2. That's the key. When you add a number of hours to a specific time on the clock, first divide the number of hours being added by 12 and determine the remainder. Add that remainder to the time on the clock to know what time it will be.

A good visualization is to wrap a number line around the clock, with the 0 at the starting time. Then each time 12 on the number line passes, the number line passes the starting spot on the clock. This is referred to as modulo 12 arithmetic. Even though the process says to divide the number being added by 12, first perform the addition; the result will be the same if you add the numbers first, and then divide by 12 and determine the remainder.

In general terms, let nn be a positive integer. Then nn modulo 12, written (nn mod 12), is the remainder when nn is divided by 12. If that remainder is xx, we would write n=xn=x (mod 12).

Checkpoint

Caution: 12 mod 12 is 0. So, if a mod 12 problem ends at 0, that would be 12 on the clock.

Example 3.101

Determining the Value of a Number modulo 12

Find the value of the following numbers modulo 12:

  1. 34
  2. 539
  3. 156

Your Turn 3.101

Find the value of the following numbers modulo 12.
1.
93
2.
387

Tech Check

Using Desmos to Determine the Value of a Number module 12

Desmos may be used to determine the value of a number modulo 12. It is flexible enough to find the value of a number modulo of any other integer you want. To determine the value of nn modulo 12, type mod(nn,12) into Desmos. The result will be displayed immediately. This can be used to find 539 modulo 12, as shown in the Figure 3.42.

Desmos screen is displayed. It reads, 539 mod 12 equals 11.
Figure 3.42 Display of 539 modulo 12

Clock arithmetic is modulo 12 arithmetic but applied to time. As time is divided into 12 hours that repeat a cycle, we use modulo 12 for clock arithmetic.

Example 3.102

Adding with Clock Arithmetic

If it's 3:00, what time will it be in 89 hours?

Your Turn 3.102

1.
If it is 9:00 now, what time will it be in 43 hours?

Subtracting time on the clock works in much the same way as addition. Find the value of the number of hours being subtracted modulo 12, then subtract that from the original time.

Example 3.103

Subtracting with Clock Arithmetic

If it is 4:00 now, what time was it 67 hours ago?

Your Turn 3.103

1.
If it is 7:00 now, what time was it 34 hours ago?

Recall that clock arithmetic was referred to as modulo 12 arithmetic. Multiplying in modulo 12 also relies on the remainder when dividing by 12. To multiply modulo 12 is just to multiply the two numbers, and then determine the remainder when divided by 12.

Example 3.104

Multiplying modulo 12

What is the product of 11 and 45 modulo 12?

Your Turn 3.104

1.
What is the product of 4 and 19 modulo 12?

Calculating Real-World Applications with Clock Arithmetic

Example 3.105

Applying Clock Arithmetic

Suppose it is 3:00, and you decide to check your email every 5 hours. What time will it be when you check your email the ninth time?

Your Turn 3.105

1.
You have agreed to text your friend every 3 hours while driving across the country. You began your trip at 8 AM. What time will it be when you text your friend the 15th time?

Clock arithmetic processes can be applied to days of the week. Every 7 days the day of the week repeats, much like every 12 hours the time on the clock repeats. The only difference will be that we work with remainders after dividing by 7. In technical terms, this is referred to as modulo 7. More generally, let nn be a positive integer. Then nn modulo 7, written nn mod 7, is the remainder when nn is divided by 7. If that value is xx, we may write n=xn=x (mod 7).

Example 3.106

Applying Clock Arithmetic to Days of the Week

Your family has a cat, and no one wants to empty the litter box. However, it has to be done daily. The six of you agree to take turns, so everyone has to empty the litter box every 6 days. You empty the box on a Thursday. What day will you empty the box for the 10th time?

Your Turn 3.106

1.
Your family shares the cooking duties in the home. You've agreed to prepare the meal every 5 days. The last time you prepared dinner was a Tuesday. What day of the week will it be after you've prepared the meals 20 more times?

Check Your Understanding

For the following exercises, use clock arithmetic to perform the following:
36.
7 + 19
37.
8 31
38.
5 × 37
39.
Calene calls her mother every fourth day. She calls on a Monday. What day of the week will it be on Calene's eighth time calling after that?

Section 3.7 Exercises

1 .
Explain what modulo 12 means.
2 .
Explain what modulo 7 means.
3 .
What is 75 modulo 12?
4 .
What is 139 modulo 12?
5 .
What is 38 modulo 7?
6 .
What is 83 modulo 7?
For the following exercises, use clock arithmetic (mod 12), to perform the indicated calculation.
7 .
7 + 13
8 .
8 + 19
9 .
4 + 27
10 .
3 + 100
11 .
9 15
12 .
6 27
13 .
4 × 18
14 .
7 × 29
15 .
11 × 38
16 .
6 × 23
17 .
It is 8:00. What time will it be in 70 hours?
18 .
It is a Thursday. What day of the week will it be in 100 days?
19 .
It is Monday. What day of the week will it be in 58 days?
20 .
It is 3:00. What time of the day will it be in 150 hours?
21 .
It is 6:00. What time was it 34 hours ago?
22 .
It is 2:00. What time was it 100 hours ago?
23 .
A trucker passes through Kokomo, Indiana, once every 9 days. They come through Kokomo on a Wednesday. What day of the week will the driver pass through Kokomo after 8 more visits?
24 .
Jason checks his email every 5 hours. He checks it at 6 PM one day. What time of the day will it be when he checks his mail the 50th time after that 6 PM check?
25 .
Mickey gets a new prescription of a drug that she needs to take every day. The prescription is for 250 days. She takes the first pill of the new bottle on a Friday. What day of the week will her prescription run out?
26 .
Zainab visits the nursing home every 5 days. She visits on a Sunday. What day of the week will it be when she visits it for the 7th time after that?
27 .
Micaela has to check in with her boss every 14 hours. If she checks in at 3:00, what time will it be when she checks in the 10th time after that?
28 .
Tracy has an alarm set for every 4 hours. It goes off at 3:00. What time will it be when the alarm goes off the 20th time after that?
29 .
Dejan must check his blood sugar every 5 hours. He checks his blood sugar at 4:00. What time will it be when Dejan checks their his sugar the 40th time after that?
30 .
Latanjana is in the hospital, where her blood pressure is checked every 3 hours. If her blood pressure is checked at 5:00, what time will it be when her blood pressure is checked the 13th time after that?
Months come in twelves, just as hours do. This means that months can be calculated using modulo 12, just like hours. For the following exercises, calculate what month it will be for each exercise.
31 .
Micaela works for a sprinkler maintenance company and runs a routine check on the Harris's sprinkler system every third month. If Micaela checks the system in an April, what month will it be when Micaela returns to the Harris's for the 11th time after that?
32 .
Dana runs a half marathon every 5 months. She runs one in a May. What month will it be when she runs her 8th marathon after that?
Order a print copy

As an Amazon Associate we earn from qualifying purchases.

Citation/Attribution

This book may not be used in the training of large language models or otherwise be ingested into large language models or generative AI offerings without OpenStax's permission.

Want to cite, share, or modify this book? This book uses the Creative Commons Attribution License and you must attribute OpenStax.

Attribution information
  • If you are redistributing all or part of this book in a print format, then you must include on every physical page the following attribution:
    Access for free at https://openstax.org/books/contemporary-mathematics/pages/1-introduction
  • If you are redistributing all or part of this book in a digital format, then you must include on every digital page view the following attribution:
    Access for free at https://openstax.org/books/contemporary-mathematics/pages/1-introduction
Citation information

© Dec 21, 2023 OpenStax. Textbook content produced by OpenStax is licensed under a Creative Commons Attribution License . The OpenStax name, OpenStax logo, OpenStax book covers, OpenStax CNX name, and OpenStax CNX logo are not subject to the Creative Commons license and may not be reproduced without the prior and express written consent of Rice University.