Difficulty: Easy
Correct Answer: 6
Explanation:
Introduction / Context:
This problem asks for a divisor that works for all natural numbers a when applied to the expression a^3 - a. Such questions test your grasp of algebraic factorization and guaranteed divisibility results that hold universally (independent of the specific value of a). Recognizing standard identities quickly leads to a clean, general proof without case-by-case calculation.
Given Data / Assumptions:
Concept / Approach:
First, factor the expression using a common algebraic identity. Then analyze the factors for universal properties: in particular, parity (evenness) and multiples of 3. A classic result is that any product of three consecutive integers is divisible by 3 and by 2. We will connect a^3 - a to that pattern.
Step-by-Step Solution:
Factor the expression: a^3 - a = a(a^2 - 1) = a(a - 1)(a + 1).The three factors are consecutive integers: (a - 1), a, (a + 1).Among any three consecutive integers, one is divisible by 3. Hence a(a - 1)(a + 1) is divisible by 3.Among any two consecutive integers, one is even. Here, we have three consecutive integers, so at least one is even. In fact, among three consecutive integers, at least one is divisible by 2. Therefore the product is divisible by 2.Combining these: the product is divisible by 2 * 3 = 6 for every natural a.
Verification / Alternative check:
Test a few values: a=1 → 1^3 - 1 = 0 (divisible by any integer); a=2 → 8 - 2 = 6 (divisible by 6); a=3 → 27 - 3 = 24 (divisible by 6). These examples support the general proof from factorization.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting to factor fully; assuming higher fixed powers of 2 divide the product (they do not always); relying only on small tests instead of recognizing the general consecutive-integers structure.
Final Answer:
6
Discussion & Comments