0

I believe this is to do with modular arithmetic, maybe along the lines of factorising $2020$ into primes and working with totients .
$2020= 2 \cdot 2 \cdot 5 \cdot 101$. The Euler totients of $4,101,$ and $5$ are $2,100$ and $4$ respectively. I am unsure of how to proceed further.
Any help would be appreciated.

Arnaldo
  • 21,342
Ruby Jane
  • 25
  • 4

2 Answers2

2
  1. $2020=4×5×101$ which factors are pairwise relatively prime.

  2. Prove the given function is a multiple of $4$. Use the fact that squares are all in $\{0,1\}\bmod 4$.

  3. Prove it's a multiple of $5$. Use Fermat's Little Theorem which asserts $n^p\equiv n\bmod p$ for prime $p$.

  4. Prive it's a multiple of $101$. See (2).

Oscar Lanzi
  • 39,403
0

Rewrite as:

$$x^{102}-x^2=x(x^{101}-x)$$

Due to Fermat little theorem:

$$x^{101}-x\equiv 0 \bmod 101$$

Rewrite as:

$$x^{102}-x^2=x^2[(x^{25})^4-1]$$

$(x^{25})^4-1\equiv 0 \bmod 5$

$\phi(4)=2$

$\Rightarrow (x^{50})^2-1\equiv 0\bmod 4$

$\Rightarrow x^{100}-1\equiv \bmod 20$

Finally:

$$x^{102}-x^2\equiv 0\bmod (4\times 5\times 101=2020)$$

sirous
  • 10,751