Difficulty: Easy
Correct Answer: k is even
Explanation:
Introduction / Context:
Primes greater than 3 are of the form 6m ± 1, because any other residue class modulo 6 makes the number divisible by 2 or 3. The question ties this fact to primes represented as 3k + 1 and asks what must be true about k to rewrite the prime as 6m + 1.
Given Data / Assumptions:
Concept / Approach:
Analyze parity: if p = 3k + 1 is to be odd, then 3k must be even, which forces k to be even. Writing k = 2t leads to p = 3(2t) + 1 = 6t + 1. Hence the required condition is that k be even.
Step-by-Step Solution:
Let p = 3k + 1 be prime and > 3, so p is odd.For p to be odd, 3k must be even → k is even.Set k = 2t → p = 3(2t) + 1 = 6t + 1.Therefore, any prime of the form 3k + 1 corresponds to 6m + 1 if and only if k is even.
Verification / Alternative check:
Try examples: p = 7 → 3k + 1 = 7 → k = 2 (even), and 7 = 6*1 + 1; p = 13 → k = 4 (even), and 13 = 6*2 + 1.
Why Other Options Are Wrong:
Common Pitfalls:
Overlooking parity constraints; assuming all 3k + 1 primes can take both 6m ± 1 forms; forgetting that primes > 3 must be 6m ± 1.
Final Answer:
k is even
Discussion & Comments