.
Translation from Indonesian
6*7^n - 2*3^n is divisible by 4 for every natural number n.
description: ^n = power n
~~~~~~~~~~~~~~~~~~~~
First, notice that 7^n and 3^n give THE SAME REMAINDER when divided by 4.
It is because the difference
7^n - 3^n = (7-3) * (7^(n-1) + 7^(n-2)*3 + 7^(n-3)*3^2 + . . . 7^1*3^(n-2) + 3^(n-1))
is divizible by 7-3 = 4. // Recall the general formula
a^n - b^n = (a-b) * (a^(n-1) + a^(n-2)*b + a^(n-3)*b^2 + . . . a^1*b^(n-2) + b^(n-1)).
Therefore, 6*7^n — 2*3^n gives the same remainder, when divided by 4, as 6*3^n — 2*3^n,
which simply equals to (collect like terms) 4*3^n,
which is, obviously, divisible by 4, since it is a multiple of 4.
At this point, the statement is proved and the problem is solved, in full.
------------------
There is a standard amount / (complex) of knowledge that advanced school student
should learn (of those students who attend Math schools, Math circles or read relevant Math literature).
This complex of knowledge is covered in lessons of this site, listed in overview lessons
- OVERVIEW of Divisibility rules by 2, 3, 4, 5, 6, 9, 10 and 11
- OVERVIEW of miscellaneous solved problems on divisibility of integer numbers
Summer is good time to read these lessons,
so you have a rare and happy opportunity to make your knowledge wider and deeper.
//////////////////
Comment from student : Thanks this answer is very helpful.
My response : I am very glad.
Come again to this forum soon to learn something new.