Guest Wrote:Does someone mind explaining this in a bit more detail?
one fact that's pretty cool, and which happens to apply to this problem, is that
you can do normal arithmetic with remainders, as long as all the remainders come from division by the same number. the only difference is that, if/when you get numbers that are too big to be authentic remainders (i.e., they're equal to or greater than the number you're dividing by), you have to take out as many multiples of the divisor as necessary to convert them back into "legitimate" remainders again. you can think of the remainders as on an odometer that rolls back to 0 whenever you reach the number you're dividing by.
so with statement (1), all the remainders are upon division by 7, so we can do normal arithmetic with them:
if t gives a remainder of 6, then t^2 = t x t gives a remainder of 6 x 6 = 36 --> this is more than 7, so we take out as many 7's as possible: 36 - 35 = 1.
if t gives a remainder of 6, then 5t gives a remainder of 5(6) = 30 --> this is more than 7, so we take out as many 7's as possible: 30 - 28 = 2.
and finally, 6 itself gives a remainder of 6.
therefore, the grand remainder when t^2 + 5t + 6 is divided by 7 should be 1 + 2 + 6 = 9 --> take out one more seven --> remainder will be 2.
sufficient.
by the way, much more generally (and therefore perhaps more importantly),
the patterns in remainder problems will always emerge fairly early when you plug in numbers. therefore, if you don't IMMEDIATELY realize a good theoretical way to do a remainder problem, you should get on the number plugging RIGHT AWAY.
with statement (1), generate the first 3 numbers for which the statement is true: 6, 13, 20.
try 6: 36 + 30 + 6 = 72, which yields a remainder of 2 upon division by 7.
try 13: 169 + 65 + 6 = 240, which yields a remainder of 2 upon division by 7.
try 20: 400 + 100 + 6 = 506, which yields a remainder of 2 upon division by 7.
i'm convinced. (again, remember that PATTERNS EMERGE EARLY in remainder problems. 3 examples may not be enough for other types of pattern recognition, but that's usually pretty good in a remainder problem.)
with statement (2), as a poster has already mentioned above, find the first two t^2's that actually do this, which are 1^2 = 1 and 6^2 = 36.
if t = 1, then 1 + 5 + 6 = 12, which yields a remainder of 5 upon division by 7.
if t = 6, then 36 + 30 + 6 = 72, which yields a remainder of 2 upon division by 7.
insufficient.
if you know about 'modulo arithmetic' (see
this post), then you can shortcut this sort of problem with it.