400
Fiona needed to multiply a number that is two more than a multiple of 7 by some other number, n, to get a number that is three more than a multiple of 7. In other words, she was trying to solve the equation 2n = 3 in Mod 7. What whole number value between 0 and 7 will work for n?
What is 5
Do this to solve the equation 2n = 3 in Mod 7. If we just
count by 2’s in Mod 7, we get 2, 4, 6, 1, 3, 5, 0, and then it repeats. It is the fifth multiple of 2 that equals 3 in Mod 7, so the value of n we need is 5. To check this, we calculate 2 * 5 which is normally 10. Subtracting 7 from 10, we confirm that 2 * 5 = 3 in Mod 7.