Techniques Overview

What you'll learn

Here's what you'll learn:

1.1. Euler's totient ϕ(n)\phi(n) counts integers coprime to nn. Use it for counting and modular inverse.

2.2. Chinese Remainder Theorem combines modular constraints into a single equation.

3.3. Prime factorization via GCD between numbers.

4.4. Diophantine equations: ax+by=cax + by = c has solutions iff gcd(a,b)\gcd(a, b) divides cc.