题目
Problem
Given that a, b and c are positive integers such that
- c=a2−1
- a+b+c=20
prove, by exhaustion, that the product abc is always a multiple of 6
You may use the table below to illustrate your answer.
(3)
You may not need to use all rows of this table.
abcabc
解答
解法一
思路
展开
因为 a,b,c 都是正整数,而且 c=a2−1,所以 a 不能太大。逐个找出所有可能的 a,这就是 exhaustion。
答题过程
展开
Since b is a positive integer,
b=20−a−c>0.
Also c=a2−1, so
b=20−a−(a2−1)=21−a−a2.
Now test the possible positive integer values of a.
If a=1, then c=0, so this is not allowed. If a=5, then b<0, so no larger value of a is possible.
a234b1591c3815abc9021660
Since b and c must be positive, the possible cases are
(a,b,c)=(2,15,3), (3,9,8), (4,1,15).
Their products are
90,216,60.
Each of these is divisible by 6.
Therefore, abc is always a multiple of 6.