Back to problem set
Disclaimer: these are my personal solutions; they have not been
reviewed, so be careful relying on them as there might be errors. Some
competitions may have official solutions from the contest publishers which
you may wish to refer to instead if you’re looking for verified solutions.
Problem 5#
Show, for all positive integers n=1,2,…, that 14 divides 34n+2+52n+1.
Hints#
Hint #1
Rather than proving the statement directly, can you do it indirectly /
incrementally?
Hint #2
See if you can use induction to prove the statement.
Solution#
Expand to see solution; try solving it first or use the hints!
We can demonstrate this via induction. Recall that to prove something by
induction, we have two steps:
- prove the base case
- prove the inductive case, e.g., if something is true for n, it’s also true
for n+1
The above two steps let us claim that this is generally true for all n of
interest.
Let’s first consider the base case (n=1):
34n+2+52n+1=34+2+52+1=729+125=854=14⋅61
Thus, 14 divides that expression, so we have shown the base case.
Now let’s consider the inductive case:
- assume that 14 divides 34n+2+52n+1
- prove that 14 divides 34(n+1)+2+52(n+1)+1
Note that we can assume that:
34n+2+52n+1≡0mod14(1)
Let’s start with the second point:
34(n+1)+2+52(n+1)+134n+4+2+52n+2+134⋅34n+2+52⋅52n+181⋅34n+2+25⋅52n+156⋅34n+2+25⋅34n+2+25⋅52n+156⋅34n+2+25⋅(34n+2+52n+1)56⋅34n+20≡?0mod14≡?0mod14≡?0mod14≡?0mod14≡?0mod14≡?0mod14≡?0mod14≡0mod14starting pointexpandfactor to match starting pointsimplifyseparate 81 into 25 and remainderfactor out 25using eq. 1since 56≡0mod14Above, we were able to first subtract the expression 25⋅(34n+2+52n+1) since it is divisible by 14 and then similarly, 56⋅34n+2 since it is also divisible by 14.
Since we have proven the inductive case, this completes the proof. ■