题目
Problem
(i) Use a counter example to show that the following statement is false
“n2+3n+1 is prime for all n∈N”
(2)
(ii) Use algebra to prove by exhaustion that for all n∈N
“n2−2 is not a multiple of 4”
(4)
解答
(i)
解法一
思路
展开
反例只需要找到一个自然数使表达式不是质数。这里可以试 n=6,因为算出来是 55。
答题过程
展开
Take
n=6.
Then
n2+3n+1===62+3(6)+136+18+155.
But
55=5×11,
so 55 is not prime.
Therefore, the statement is false.
(ii)
解法一
思路
展开
任意自然数不是奇数就是偶数,所以只需分两类讨论。这就是 exhaustion:把所有可能情况列完。
答题过程
展开
Every natural number is either even or odd.
If n is even, let
n=2k.
Then
n2−2==(2k)2−24k2−2.
This is 2 less than a multiple of 4, so it is not a multiple of 4.
If n is odd, let
n=2k+1.
Then
n2−2====(2k+1)2−24k2+4k+1−24k2+4k−14(k2+k)−1.
This is 1 less than a multiple of 4, so it is not a multiple of 4.
Therefore, in all cases, n2−2 is not a multiple of 4.