Exercise 1: Why q Doesn't Need to Be Prime — Possible Solution ==================================================================== The proof's real goal is only to show that a prime outside the original finite list exists somewhere - it never promises to hand you that new prime directly, or to prove q itself is that new prime. The proof works by covering both possible cases for q completely. If q happens to be prime, that's immediately a new prime not on the original list (since q = P + 1 is strictly larger than every prime factor of P, it can't equal any of them). If q is NOT prime, it's composite, meaning it has to have at least one prime factor - and that prime factor can be shown to also be missing from the original list, using the "divides P and q, so divides their difference of 1" argument. Because these two cases (q is prime, or q is composite) are the only two possibilities for any integer greater than 1, and both cases independently guarantee a prime outside the original list exists, the proof succeeds regardless of which case actually turns out to be true. It doesn't matter which one happens - only that a new prime is guaranteed to exist either way. ANSWER: The proof doesn't need q itself to be prime because it handles both possible cases separately: if q is prime, it's directly a new prime not on the list; if q is composite, one of its prime factors is shown to be missing from the list instead. Since these two cases cover every possibility, the argument succeeds regardless of which one actually occurs. WHY THIS WORKS AS AN ANSWER ------------------------------ This correctly explains the case-based structure of the proof and why covering both possibilities, rather than needing one specific outcome, is what makes the argument work.