Section 3.5 Clock Arithmetic
In the following we give applications of the combination of the operation and the addition of integers called clock arithmetic.
Recall that the operation yields the remainder of integer division. That is, for an integer and a natural number the number is the number such that for some integer and is a non-negative integer and
Applications of the operation 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
These operations can be considered as adding hours to a time. To compute these additions we add the hours and then subtract as many times as necessary to obtain a number between and With a similar method we had computed the remainder in Algorithm 3.6.
The main difference between the two approaches is that using the hour clock we obtain numbers between and and when computing remainders we obtain numbers between and That is, we replace by as shown in Figure 3.61.(a). We call this arithmetic modulo Figure 3.61.(b) illustrates how the number line wraps around the clock face in arithmetic modulo The remainder modulo of two numbers is the same if they differ by a multiple of
Example 3.63. Addition .
We formulate the computations from Example 3.62 using remainders. Recall that we denoted the remainder of the division of by by
Example 3.64. Addition .
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:
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. hours from o’clock.
What time is it in 79 hours if it is 4 o’clock now ?
Solution.
We have Thus 79 hours from now, it is 11 o’clock.
The same result can also be obtained by first computing and then
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
Problem 3.67. 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 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
Problem 3.69. months from November.
Which month is it months from now if this month is November?
Solution.
Months wrap around after months. We have Since December is one month after November, 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
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.