The Day of the Week After 100 Days and a Clock After 50 Hours
A cargo ship leaves port on a Wednesday, and its voyage takes exactly 100 days. (a) On which day of the week does the ship arrive? (b) The 12-hour clock on the bridge shows 9 o'clock when a storm warning is received. The storm is expected 50 hours later. What time does the clock show when the storm is expected?
The days of the week repeat every 7 days and a 12-hour clock repeats every 12 hours. A whole number of full cycles brings the position back to where it started, so only the remainder after division by the length of the cycle matters. This is arithmetic modulo 7 and modulo 12.
- The days of the week repeat every 7 days, so 7 days after a Wednesday is a Wednesday again. Only the remainder when 100 is divided by 7 changes the day.
- Divide 100 by 7: 14 × 7 = 98, so 100 = 14 × 7 + 2. The 14 full weeks bring the ship back to a Wednesday, and 2 days are left over.
- (a) Count 2 days on from Wednesday: Thursday, Friday. The ship arrives on a Friday.
- A 12-hour clock repeats every 12 hours. Divide 50 by 12: 4 × 12 = 48, so 50 = 4 × 12 + 2. The 4 full turns of the hour hand change nothing, and 2 hours are left over.
- (b) 9 + 2 = 11, so the clock shows 11 o'clock. Check: 9 + 50 = 59 and 59 = 4 × 12 + 11, which also gives 11 o'clock.
answer(a) Friday, because 100 = 14 × 7 + 2; (b) 11 o'clock
techniqueModular Arithmetic on a Clock Face
Common pitfalls
- Using the quotient instead of the remainder, and counting 14 days on from Wednesday. The quotient 14 is the number of full weeks, and a full week does not change the day. The remainder 2 is the number of days to count on.
- Dividing 50 hours by 24 because a day has 24 hours. The clock on the bridge is a 12-hour clock, so its hour hand returns to the same number every 12 hours, and the division is by 12.
The Check Digit of a Library Book Code and a Smudged Digit
A library gives every book a code of six digits. The digits are multiplied in order by the weights 6, 5, 4, 3, 2 and 1, and the products are added. The code is valid only when this weighted sum is a multiple of 11. The last digit is a check digit, chosen to make the code valid. (a) The first five digits of a code are 4, 0, 7, 3 and 5. Find the check digit. (b) On a worn label the code reads 2, 5, a smudged digit, 1, 8, 4. Find the smudged digit.
Write each digit over its weight, add the products that are known, and use a letter for the digit that is not known. A digit is one of 0 to 9, so the weighted sum can only lie in a short range, and only one multiple of 11 in that range can be reached.
- Multiply each known digit by its weight and add: 6 × 4 + 5 × 0 + 4 × 7 + 3 × 3 + 2 × 5 = 24 + 0 + 28 + 9 + 10 = 71.
- Let the check digit be c. Its weight is 1, so the weighted sum is 71 + c. Since c is a digit from 0 to 9, the sum lies from 71 to 80. The only multiple of 11 in that range is 77.
- (a) 71 + c = 77, so c = 6. The full code is 407356.
- Let the smudged digit be x. Its weight is 4, so the weighted sum is 6 × 2 + 5 × 5 + 4x + 3 × 1 + 2 × 8 + 1 × 4 = 12 + 25 + 4x + 3 + 16 + 4 = 60 + 4x.
- Since x is a digit from 0 to 9, the sum lies from 60 to 96. The multiples of 11 in that range are 66, 77 and 88, which need 4x = 6, 4x = 17 or 4x = 28. Only 28 is a multiple of 4.
- (b) 4x = 28, so x = 7. Check: 12 + 25 + 28 + 3 + 16 + 4 = 88 = 8 × 11.
answer(a) 6, which makes the weighted sum 77; (b) 7, which makes the weighted sum 88
techniqueModular Arithmetic on a Clock Face · Casting Out Nines to Check Arithmetic
examsGCSE Higher
Common pitfalls
- Adding the digits without their weights. Without weights, two digits that change places give the same sum, so the code could not catch that mistake. Each digit must be multiplied by its own weight before the products are added.
- Stopping at 4x = 6 and writing x = 1.5. A digit is a whole number from 0 to 9, so 66 cannot be the weighted sum. Every multiple of 11 in the range has to be tried until one gives a whole number for x.
A Multiplication Checked by Casting Out Nines, and a Copying Error
A stock clerk must work out 347 × 286 by hand. Two answers are offered, 99242 and 99142. (a) Use casting out nines to show that one of the two answers is wrong, and say which. (b) The clerk copies the other answer into the ledger as 92942, with two digits changed places. Does casting out nines catch this error? Give the reason.
Each of 10, 100, 1000 and so on leaves a remainder of 1 when it is divided by 9. So a number leaves the same remainder as the sum of its digits. Adding the digits again and again until one digit is left gives the digital root. The digital root of a product must agree with the product of the digital roots.
- Reduce each factor to its digital root. For 347: 3 + 4 + 7 = 14 and 1 + 4 = 5. For 286: 2 + 8 + 6 = 16 and 1 + 6 = 7.
- Multiply the digital roots and reduce again: 5 × 7 = 35 and 3 + 5 = 8. The correct product must have a digital root of 8.
- (a) For 99242: 9 + 9 + 2 + 4 + 2 = 26 and 2 + 6 = 8, which agrees. For 99142: 9 + 9 + 1 + 4 + 2 = 25 and 2 + 5 = 7, which does not agree. So 99142 is wrong.
- The number 92942 has the same digits as 99242 in a different order. Its digit sum is still 9 + 2 + 9 + 4 + 2 = 26, and its digital root is still 8. It passes the check, although it is not the product.
- (b) No. Changing the places of two digits does not change the digit sum, so the digital root stays 8. The error is 99242 − 92942 = 6300 = 9 × 700, a multiple of 9, and casting out nines cannot see an error that is a multiple of 9.
answer(a) 99142 is wrong: its digital root is 7, and the product must have a digital root of 8; (b) no: 92942 still has the digit sum 26 and the digital root 8, because changing the places of two digits does not change the digit sum
techniqueCasting Out Nines to Check Arithmetic · Modular Arithmetic on a Clock Face
examsGCSE Higher
Common pitfalls
- Saying that 99242 has been proved correct because its digital root agrees. Agreement shows only that the answer is not wrong by an amount that casting out nines can see. An answer that fails the check is certainly wrong, but an answer that passes may still be wrong.
- Adding the digital roots, 5 + 7 = 12, when the numbers are multiplied. The digital roots are combined by the same operation as the numbers, so for a product they are multiplied: 5 × 7 = 35.
Which Masses a Digital Scale Can Show Exactly
A workshop scale shows a mass in kilograms as a decimal, and it shows the mass exactly only when the decimal terminates. Four parts have masses of 740 kg, 512 kg, 9625 kg and 415 kg. (a) Without dividing, decide which of the four masses the scale can show exactly. (b) For each of those masses, find the decimal and the number of decimal places that the scale needs.
A terminating decimal is a fraction whose denominator is a power of 10, and 10 = 2 × 5. So a fraction in its lowest terms terminates exactly when the only prime factors of its denominator are 2 and 5. Any other prime factor can never be turned into a power of 10, and the decimal recurs.
- Check that each fraction is in its lowest terms, then write each denominator as a product of prime factors: 40 = 23 × 5, 12 = 22 × 3, 625 = 54 and 15 = 3 × 5.
- (a) The denominators 40 and 625 have no prime factors other than 2 and 5, so 740 and 9625 terminate. The denominators 12 and 15 have the prime factor 3, so 512 and 415 recur.
- For 740, make the denominator a power of 10. Since 40 = 23 × 5, two more factors of 5 are needed: 7 × 2540 × 25 = 1751000 = 0.175.
- For 9625, four factors of 2 are needed, because 625 = 54: 9 × 16625 × 16 = 14410000 = 0.0144.
- (b) The number of decimal places is the larger of the two indices of 2 and 5 in the denominator: 0.175 has 3 decimal places and 0.0144 has 4. Check by division: 512 = 0.41666… and 415 = 0.2666…, which both recur.
answer(a) 740 and 9625 terminate, and 512 and 415 recur; (b) 740 = 0.175, with 3 decimal places, and 9625 = 0.0144, with 4 decimal places
techniqueWhy Every Fraction Terminates or Recurs
examsGCSE Higher
Common pitfalls
- Deciding before the fraction is in its lowest terms. The fraction 615 has a factor of 3 in its denominator, but 615 = 25 = 0.4, which terminates. The rule applies to the denominator after every common factor has been canceled.
- Saying that 9625 recurs because 625 is odd. A denominator does not have to be even. It has to be free of every prime factor except 2 and 5, and 625 = 5 × 5 × 5 × 5 is.
Two Shares of a Profit Shown as Recurring Decimals
A spreadsheet shows two partners' shares of a profit as decimals. Aisha's share is shown as 0.272727…, in which the digits 27 repeat forever. Ben's share is shown as 0.1666…, in which the digit 6 repeats forever. The contract must state each share as a fraction in its lowest terms. (a) Find Aisha's share as a fraction. (b) Find Ben's share as a fraction.
Two decimals with the same recurring part differ by a number whose decimal terminates. Multiplying by a power of 10 moves the digits without changing the recurring part, so a subtraction removes it and leaves an equation with whole numbers.
- Let x = 0.272727… The repeating block has 2 digits, so multiply by 100 to move one full block: 100x = 27.272727…
- Subtract x from 100x. The recurring parts are the same, so they cancel: 100x − x = 27.272727… − 0.272727…, which gives 99x = 27 and x = 2799.
- (a) Divide the numerator and the denominator by 9: Aisha's share is 311. Check by long division of 3 by 11: the remainders are 3, 8, 3, 8 and so on, and the digits 2 and 7 repeat.
- Let y = 0.1666… The digit 1 does not repeat, so two multiples are needed whose recurring parts are the same: 10y = 1.666… and 100y = 16.666…
- (b) Subtract: 100y − 10y = 16.666… − 1.666…, which gives 90y = 15. So y = 1590 = 16, and Ben's share is 16. Check by long division of 1 by 6: the remainders are 1, 4, 4 and so on, and the digits are 1, then 6 repeating.
answer(a) 311; (b) 16
techniqueTurning Recurring Decimals into Fractions · Why Every Fraction Terminates or Recurs
examsGCSE Higher
Common pitfalls
- Multiplying 0.272727… by 10 only. Then 10x = 2.727272…, whose recurring part starts with 7 and does not cancel against 0.272727… The multiplier must move one full repeating block, which is 2 digits here.
- Writing 0.1666… as 1699 or 166610000. The first treats 16 as the repeating block, but only the 6 repeats. The second cuts the decimal off, so it is only an approximation of the share.
Sharing Loaves Among Workers the Egyptian Way
In ancient Egypt a share was written as a sum of different unit fractions, which are fractions with a numerator of 1. The greedy method takes the largest unit fraction that is not more than the share, subtracts it, and repeats with what is left. (a) 5 loaves are shared equally among 8 workers. Write each worker's share as a sum of different unit fractions by the greedy method, and say what each worker receives. (b) On another day 11 loaves are shared equally among 12 workers. Write each share in the same way, and say how the 11 loaves are cut.
A share of 5 loaves among 8 workers is 58 of a loaf. Written as unit fractions, the share becomes a few large pieces instead of many small ones, and every worker can see that all the shares are the same.
- Each worker's share is 5 ÷ 8 = 58 of a loaf. A whole loaf is more than 58, and 12 = 48 is not more than 58, so the largest unit fraction that fits is 12.
- Subtract it: 58 − 48 = 18. What is left is a unit fraction, so the method stops, and 58 = 12 + 18.
- (a) Each worker receives half a loaf and one eighth of a loaf. Cut 4 loaves into halves to make 8 halves, and cut the fifth loaf into 8 eighths. Check: 4 + 1 = 5 loaves.
- For 11 loaves among 12 workers the share is 1112. The largest unit fraction that fits is 12 = 612, and 1112 − 612 = 512 is left. Now 12 = 612 is too large, but 13 = 412 fits, and 512 − 412 = 112 is left.
- (b) 1112 = 12 + 13 + 112. Cut 6 loaves into halves, 4 loaves into thirds and 1 loaf into twelfths, which makes 12 pieces of each size. Check: 6 + 4 + 1 = 11 loaves.
answer(a) 58 = 12 + 18: each worker receives half a loaf and one eighth of a loaf; (b) 1112 = 12 + 13 + 112: 6 loaves are cut into halves, 4 loaves into thirds and 1 loaf into twelfths
Common pitfalls
- Writing 58 = 18 + 18 + 18 + 18 + 18. The unit fractions must all be different. Repeating 18 also gives each worker 5 small pieces instead of 2 large ones.
- Taking 13 first for 1112 because it is a familiar fraction. The greedy method always takes the largest unit fraction that fits, and 12 fits, because 612 is not more than 1112.
One More Than a Product of Primes: Mei's List and Her Claim
Mei is building a list of primes for a coding club. She starts with 2, 3, 5 and 7 and forms the number N = 2 × 3 × 5 × 7 + 1. (a) Show that N is not divisible by any prime in her list, and decide whether N is prime. (b) Mei concludes that one more than a product of primes is always prime. Test her claim on 2 × 3 × 5 × 7 × 11 × 13 + 1 = 30031, given that 30031 = 59 × 509, and say what Euclid's argument does guarantee.
A product of primes is a multiple of each of them, so one more than the product leaves a remainder of 1 for each. The new number has at least one prime factor, and that prime factor cannot be in the list. This is why no finite list of primes is ever complete.
- N = 2 × 3 × 5 × 7 + 1 = 210 + 1 = 211. The number 210 is a multiple of each of 2, 3, 5 and 7, so 211 leaves a remainder of 1 when it is divided by any of them. No prime in the list divides N.
- To decide whether 211 is prime, test the primes whose squares are not more than 211. Since 152 = 225 is more than 211, the primes to test are 2, 3, 5, 7, 11 and 13. The first four leave a remainder of 1, and 211 = 11 × 19 + 2 and 211 = 13 × 16 + 3.
- (a) No prime up to 13 divides 211, so 211 is prime. It is a prime that is not in Mei's list.
- For the longer list, 2 × 3 × 5 × 7 × 11 × 13 = 30030, so the new number is 30031. But 59 × 509 = 30031, so 30031 is not prime, and Mei's claim is false.
- (b) Euclid's argument guarantees less than Mei claims, and it is still enough. Each of 2, 3, 5, 7, 11 and 13 leaves a remainder of 1 when it divides 30031, so every prime factor of 30031 is outside the list. The factors 59 and 509 are both prime, and both are new.
answer(a) 211 leaves a remainder of 1 when it is divided by each of 2, 3, 5 and 7, and it is prime; (b) the claim is false, because 30031 = 59 × 509, but 59 and 509 are primes that are not in the list
Common pitfalls
- Saying that 211 is prime only because 2, 3, 5 and 7 do not divide it. A number below 152 can still have the factor 11 or 13, so those two primes must be tested as well.
- Concluding from 30031 = 59 × 509 that Euclid's proof fails. The proof never says that the new number is prime. It says that the new number has a prime factor that is not in the list, and 59 is such a factor.
Two Gears for a Ratio of 3.14 from a Continued Fraction
A clockmaker needs a pair of gears whose numbers of teeth are in the ratio 3.14 to 1. Written as a fraction, 3.14 = 15750, but a gear with 157 teeth is too large for the clock. (a) Write 15750 as a continued fraction and list its convergents. (b) Which convergent can be made with gears of fewer than 30 teeth each, and by exactly how much does its ratio differ from 3.14?
A continued fraction is found by dividing again and again: the whole part of each division is a term, and the fractional part is inverted and divided again. Stopping after the first few terms gives the convergents, which are the closest fractions to the number among all fractions with denominators of that size.
- Write the ratio as a fraction in its lowest terms: 3.14 = 314100 = 15750. Divide: 157 = 3 × 50 + 7, so 15750 = 3 + 750. The first term is 3.
- The fractional part 750 is 1 divided by 507. Divide again: 50 = 7 × 7 + 1, so 507 = 7 + 17, and the second term is 7. The last fractional part 17 is 1 divided by 7, so the third term is 7 and the division ends. The terms are 3, 7 and 7, written [3; 7, 7].
- (a) Stop after each term in turn. The first convergent is 3. The second is 3 + 17 = 227. The third uses every term: 3 + 750 = 15750, the number itself.
- Gears with 22 teeth and 7 teeth have fewer than 30 teeth each. Compare 227 with 15750 over the common denominator 350: 227 = 1100350 and 15750 = 1099350.
- (b) The convergent 227 is 1100350 − 1099350 = 1350 more than 3.14. Check: 1350 is about 0.003, which is less than one thousandth of the ratio.
answer(a) 15750 = [3; 7, 7], and the convergents are 3, 227 and 15750; (b) 227, from gears with 22 teeth and 7 teeth, which is exactly 1350 more than 3.14
techniqueContinued Fractions
examsGCSE Higher
Common pitfalls
- Rounding 3.14 to 3.1 = 3110 to get small numbers. That ratio differs from 3.14 by 4100 = 14350, which is 14 times the error of 227, and it needs a gear with 31 teeth.
- Inverting the whole number instead of the fractional part, and writing 15750 = 3 + 507. The fractional part is 750. It is rewritten as 1 divided by 507, and only then is 507 divided again.
No Tile Fits Both the Side and the Diagonal of a Square
A tiler wants a square courtyard in which one row of identical tiles fits exactly along a side and another row of the same tiles fits exactly along the diagonal. Suppose a tiles fit along a side and b tiles fit along the diagonal, where a and b are whole numbers. (a) Show that this is impossible, whatever the size of the tile. (b) The tiler makes the side exactly 12 tiles long. Between which two whole numbers of tiles does the diagonal lie?
By Pythagoras' theorem the square of the diagonal is twice the square of the side. If both were whole numbers of tiles, the tile could be made as large as possible, so that a and b have no common factor. The even and odd argument then shows that a and b are both even, which cannot be.
- Suppose a tiles fit along the side and b along the diagonal. Choose the largest tile that does this, so that a and b have no common factor. By Pythagoras' theorem, b2 = a2 + a2 = 2a2.
- So b2 is even. The square of an odd number is odd, so b is even. Write b = 2c. Then (2c)2 = 2a2, which is 4c2 = 2a2, so a2 = 2c2.
- (a) Now a2 is even, so a is even as well. Then a and b have the common factor 2, which contradicts the choice of the largest tile. So no tile fits both the side and the diagonal: ba = √2 is not a fraction.
- (b) With a side of 12 tiles, the diagonal is d tiles, where d2 = 2 × 122 = 288. Since 162 = 256 and 172 = 289, the diagonal lies between 16 and 17 tiles. It is 12√2 tiles exactly, and the last tile always has to be cut.
answer(a) It is impossible: b2 = 2a2 makes both a and b even, even after every common factor has been removed; (b) d2 = 288, which lies between 162 = 256 and 172 = 289, so the diagonal is between 16 and 17 tiles long
techniqueThe Square Root of Two Is Irrational
Common pitfalls
- Saying that 17 tiles fit the diagonal because 172 = 289 is so close to 288. Close is not equal. The diagonal is slightly shorter than 17 tiles, and part (a) shows that no whole number can ever be exact.
- Leaving out the step that a and b have no common factor. Without it, the fact that both are even is not a contradiction. The common factor is removed first so that finding the factor 2 again is impossible.
A Dispute About a Third of a Ribbon on a Calculator
A ribbon of length 1 m is cut into 3 equal pieces. Jun says that each piece is 0.333… m long, that 3 × 0.333… = 0.999…, and that a little ribbon has therefore been lost. (a) Show that 0.999… is exactly equal to 1, so that no ribbon is lost. (b) Jun's calculator shows 1 ÷ 3 as 0.3333333, with 7 decimal places. Find 3 × 0.3333333, and find how far it is from 1. Explain where this difference comes from.
The decimal 0.999… has nines that never end, and it is a second way of writing the number 1, just as 0.5 and 12 are two ways of writing one number. A calculator display is different: it ends after a fixed number of digits, so it shows slightly less than one third.
- Let x = 0.999… Multiply by 10, which moves every digit one place: 10x = 9.999…
- Subtract x from 10x. The recurring parts are the same, so they cancel: 10x − x = 9.999… − 0.999… = 9. So 9x = 9 and x = 1.
- (a) 0.999… = 1 exactly, so the three pieces make 3 × 13 = 1 m and no ribbon is lost. A second reason: the difference 1 − 0.999… would have to be less than 0.1, less than 0.01, less than 0.001 and so on, and the only number that is not negative and is less than all of these is 0.
- The calculator stops after 7 decimal places, so it shows 0.3333333, which is slightly less than 13. Multiply: 3 × 0.3333333 = 0.9999999.
- (b) 1 − 0.9999999 = 0.0000001, so the product is 0.0000001 m less than 1 m. The difference comes from the digits that the display cut off, and not from the ribbon. With nines that never end, there is no difference at all.
answer(a) 9x = 9, so x = 0.999… = 1 exactly; (b) 3 × 0.3333333 = 0.9999999, which is 0.0000001 less than 1, because the display was cut off after 7 decimal places
techniqueWhy 0.999… Equals Exactly One · Turning Recurring Decimals into Fractions
examsGCSE Higher
Common pitfalls
- Saying that 0.999… is the number just before 1. There is no number just before 1: between any two different numbers lies their mean, and no decimal lies between 0.999… and 1. The two are the same number.
- Treating the display 0.3333333 as equal to 13. The display has 7 digits and 13 has digits that never end. The difference of 0.0000001 in part (b) belongs to the shortened decimal only.