High School Mathematics Extensions/Solutions to Problem Sets

From testwiki
Jump to navigation Jump to search

Template:High School Mathematics Extensions/TOC

Primes and Modular Arithmetic

Factorisation Exercises

Factorise the following numbers. (note: I know you didn't have to, this is just for those who are curious)

  1. 13=131
  2. 26=132
  3. 59=591
  4. 82=412
  5. 101=1011
  6. 121=1111
  7. 2187=3333333

Recursive Factorisation Exercises

Factorise using recursion.

  1. 45=335
  2. 4050=2333355
  3. 2187=3333333

Prime Sieve Exercises

  1. Use the above result to quickly work out the numbers that still need to be crossed out in the table below, knowing 5 is the next prime:
X2p3pX5X7XXX11X13XXX17X19XXX23X25XXX29X31XXX35X37XXX41X43XXX47X49X
The next prime number is 5. Because 5 is an unmarked prime number, and 5 * 5 = 25, cross out 25. Also, 7 is an unmarked prime number, and 5 * 7 = 35, so cross off 35. However, 5 * 11 = 55, which is too high, so mark 5 as prime ad move on to 7. The only number low enough to be marked off is 7 * 7, which equals 35. You can go no higher.

2. Find all primes below 200.

The method will not be outlined here, as it is too long. However, all primes below 200 are:

2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97 101 103 107 109 113 127 131 137 139 149 151 157 163 167 173 179 181 191 193 197 199

Modular Arithmetic Exercises

  1. (1)(5)mod11=5
  2. 37mod11=21=10
  3. 21=2,22=4,23=8,24=16=5
    25=32=10,26=64=9,27=128=7
    28=256=3,29=512=6,210=1024=1
    An easier list: 2, 4, 8, 5, 10, 9, 7, 3, 6, 1