Bunuel
If a, b, and c are consecutive integers (a < b < c), such that a*b*c = a + b + c, then how many triplets of (a, b, c) are possible?
A. 0
B. 1
C. 2
D. 3
E. More than 3
Solution:Since the product of three positive integers is usually much greater than the sum of the same three integers, and if a*b*c is indeed equal to a + b + c, then the integers must be very small. Upon trial and error, we see that 1*2*3 = 1 + 2 + 3. Since a, b, and c are consecutive integers and a < b < c, we see that (a, b, c) could be (1, 2, 3). If a = 2, we see that 2*3*4 = 24 and 2+3+4 = 9. We see that a can’t be greater than 1. Let’s try values that are less than 1.
If a = 0, 0*1*2 = 0 and 0 + 1 + 2 = 3, we see that a*b*c ≠ a + b + c.
If a = -1, -1*0*1 = 0 and -1 + 0 + 1 = 0, we see that a*b*c = a + b + c.
If a = -2, -2*-1*0 = 0 and -2 + (-1) + 0 = -3, we see that a*b*c ≠ a + b + c.
If a = -3, -3*-2*-1 = -6 and -3 + (-2) + (-1) = -6. we see that a*b*c = a + b + c.
If a = -4, -4*-3*-2 = -24 and -4 + (-3) + (-2) = -9. we see that a*b*c ≠ a + b + c.
We can stop at this point. We see that if a < -4, the product of a, b, and c will be much less than the sum of a, b, and c. Therefore, there are three values for a, namely, 1, -1, and -3, and hence there are three triplets of (a, b, c) that are possible.
Alternate Solution:We see that b = a + 1 and c = a + 2. Let’s substitute these values in a*b*c = a + b + c:
a(a + 1)(a + 2) = a + (a + 1) + (a + 2)
a(a^2 + 2a + a + 2) = 3a + 3
a^3 + 3a^2 + 2a = 3a + 3
a^3 + 3a^2 - a - 3 = 0
To solve this cubic equation, let’s factor by grouping by factoring a^2 from the first two terms and factoring -1 from the last two terms:
a^2(a + 3) + (-1)(a + 3) = 0
(a + 3)(a^2 - 1) = 0
a + 3 = 0 or a^2 - 1 = 0
The first equation yields a solution of a = -3. The second equation yields the solutions a = 1 or a = -1. We can verify that all these values satisfy a * (a + 1) * (a + 2) = a + (a + 1) + (a + 2). Thus, there are three triplets satisfying the given equation.
Answer: D