NZMOSA 2014 June Problems Solutions
NZMOSA 2014 June Problems Solutions
NZMOSA 2014 June Problems Solutions
SOLUTIONS
1. Solution 1:
The bracelet has beads of 4 colours. Lets say theyre red, blue, green and yellow. Something that turns out to be important is that if two beads are right next to each other, no
matter how much we flip or rotate the bracelet, the two beads are still next to each other.
Lets just focus on the red and blue beads. Since the bracelet is the same no matter how
we rotate or flip it, there are only two possibilities: (1) the red and blue beads are right
next to each other, and (2) the red and blue beads are opposite each other.
Case 1: This gives us two possible bracelets: RBGY (blue and green are next to each
other) and RGYG (green and yellow are next to each other). Note: the two ends of
the bracelets are connected.
Case 2: Here, there is only one possible bracelet: RGBY.
Because only an answer was required, you could have listed, drawn out, or maybe even
made all the possibilities and found out that there are only 3 different types of bracelets.
Solution 2:
We will use the fact that different bracelets have beads with different neighbours. Let
us make a table of each bead and its neighbours. We will put a X in a cell if two beads
are neighbours.
Case 1: R is next to G and B
R
G
B
Y
R
X
X
X
X
G
X
X
X
X
B
X
X
X
But R cannot be adjacent to anything else anymore, and G and B cannot be adjacent, so
we have:
R
G
B
Y
R
X
X
X
X
G
X
X
X
X
B
X
X
X
X
Y
X
R
X
X
X
X
G
X
X
X
X
B
X
X
X
X
Y
X
X
X
X
R
X
X
X
X
G
X
X
X
X
B
X
X
X
X
Y
X
X
X
X
R
X
X
X
X
G
X
X
X
X
B
X
X
X
X
Y
X
X
X
X
3. Lets cut up the hexagon into six triangles, which all have the same area (they all have
equal side lengths, so they are congruent).
The shaded area takes up 4 of the 6 triangles, so the area of the total is
2
4
= .
6
3
Note: There were other ways to do this, but this one is nice and clean.
4. Solution 1:
The last digits of 7(some number) repeat in this pattern: 7, 9, 3, 1, 7, 9, 3, 1, and so on.
So the last digit of 7n depends on what the remainder of n is when divided by 4 (if it has
remainder 1, the last digit is 7; if it has remainder 2, the last digit is 9, and so on).
2014 has remainder 2 when divided by 4, so the last digit is 9.
Solution 2:
The same thing can be written more succinctly using modulo notation. Essentially, writing
a b (mod n) means that a and b have the same remainder when divided by n. So
15 3 1 (mod 4) and in particular, mod 10 tells us the last digit of a number.
503
Solution 3:
This technique is useful for much harder situations: if we have a large number that we
dont know how to deal with, there is a theorem that comes to the rescue, known as
Eulers theorem:
For a and n which are integers that share no common factors greater than 1 (i.e. they
are coprime),
a(n) 1 (mod n)
where (n) is the number of integers from 1 to n 1 inclusive which are coprime to n.
In our situation, (10) = 4 (the coprime integers are 1, 3, 7 and 9), so 74 1 (mod 10).
The rest of the solution follows as in Solution 2.
Now, there are 4 pairs of numbers that are placed by the end of the game. One of these
pairs was not useful because it does not give a sum of 14 to allow player 1 to win.
This leaves 3 pairs of numbers which must not be placed in a row or column if player 2
wants to win (the ones that are not italicised above). However, there are only 2 diagonals,
so at least one pair must be placed on a row or column, making player 1 win.
Thus by following this strategy, player 1 can always win.