Public-Key Math Essentials Checkpoint

Modular arithmetic, inverses, CRT, and RSA math basics.


1. An element a has a modular inverse mod m iff:
2. If x = a mod m, then x is also equal to:
3. CRT gives a unique solution modulo M when moduli are:
4. In RSA, the private exponent d satisfies:
5. If p and q are primes, phi(p*q) equals:
6. A linear congruence a*x = b (mod m) has a solution when:
7. If g = gcd(a, m) divides b, how many solutions does a*x = b (mod m) have?
8. Extended Euclid returns x,y such that:
9. Euler's theorem requires which condition on a and n?
10. Which statement about modular inverses is true?
11. For non-coprime moduli, a CRT system has a solution only if:
12. In RSA, why use lambda(n) = lcm(p-1, q-1) in the key equation?
13. Why must RSA choose e with gcd(e, phi(n)) = 1?
14. Overflow is a real risk in modular arithmetic because:
15. True/False: If gcd(a, m) != 1, then a has no modular inverse mod m.