解题
**(a)**
(i)
- Row 1: \(12, 5, 9, 2\)
- Row 2: \(|12-5|=7\), \(|5-9|=4\), \(|9-2|=7\) \(\Rightarrow 7, 4, 7\)
- Row 3: \(|7-4|=3\), \(|4-7|=3\) \(\Rightarrow 3, 3\)
- Row 4: \(|3-3|=0\) \(\Rightarrow 0\)
(ii)
- Row 1: \(20, 14, 9, 5, 2\)
- Row 2: \(6, 5, 4, 3\)
- Row 3: \(1, 1, 1\)
- Row 4: \(0, 0\)
- Row 5: \(0\)
**(b)**
(i)
- Row 1: \( a \quad a+d \quad a+2d \quad a+3d \quad a+4d \)
- Row 2: \( d \quad d \quad d \quad d \)
- Row 3: \( 0 \quad 0 \quad 0 \)
- Row 4: \( 0 \quad 0 \)
- Row 5: \( 0 \)
(ii) Since Row 3 onwards consists of all zeros, the bottom value is \( 0 \).
**(c)**
(i)
- Row 1: \(1, 3, 9, 27\)
- Row 2: \(|1-3|=2\), \(|3-9|=6\), \(|9-27|=18\) \(\Rightarrow 2, 6, 18\)
- Row 3: \(|2-6|=4\), \(|6-18|=12\) \(\Rightarrow 4, 12\)
- Row 4: \(|4-12|=8\) \(\Rightarrow 8\)
(ii)
- Row 1: \(1, 3, 9, 27, 81\)
- Row 2: \(2, 6, 18, 54\)
- Row 3: \(4, 12, 36\)
- Row 4: \(8, 24\)
- Row 5: \(16\)
(iii) The bottom values for sizes 3, 4, 5 are \( 4 \), \( 8 \), \( 16 \), which are \( 2^2 \), \( 2^3 \), \( 2^4 \). Thus, for size \( k \), the bottom value is \( 2^{k-1} \).
**(d)**
(i)
- Row 1: \( 1, 1, 0, 1 \)
- Row 2: \( 0, 1, 1 \)
- Row 3: \( 1, 0 \)
- Row 4: \( 1 \)
(ii)
Triangle:
$$\begin{array}{ccccc}
1 & & 0 & & 1 \\
& 1 & & 1 & \\
& & 0 & &
\end{array}$$
Total number of \( 1 \)s is \( 4 \).
(iii)
For a size 4 triangle to have bottom value \( 1 \), Row 3 must contain a \( 1 \), Row 2 must contain a \( 1 \), and Row 1 must contain a \( 1 \). Together with the bottom \( 1 \), there must be at least \( 4 \) ones in the entire triangle. A row of \( 1, 0, 0, 0 \) achieves this:
$$\begin{array}{ccccccc}
1 & & 0 & & 0 & & 0 \\
& 1 & & 0 & & 0 & \\
& & 1 & & 0 & & \\
& & & 1 & & &
\end{array}$$
Total number of \( 1 \)s is \( 4 \).
(iv) If Row 1 is \( 1, 0, 0, \dots, 0 \), the first element of Row 2 is \( |1-0|=1 \), and the rest of Row 2 consists of \( |0-0|=0 \). Thus Row 2 is \( 1, 0, 0, \dots, 0 \). By mathematical induction, every subsequent row \( i \) starts with a \( 1 \) and is followed by zeros, ensuring the left boundary is entirely composed of \( 1 \)s.
评分标准
**(a)**
(i) **[4 marks]**
- **B1** for Row 2: \( 7, 4, 7 \)
- **B2** for Row 3: \( 3, 3 \) (or **B1** for one correct)
- **B1** for Row 4: \( 0 \)
(ii) **[4 marks]**
- **B1** for Row 2: \( 6, 5, 4, 3 \)
- **B1** for Row 3: \( 1, 1, 1 \)
- **B1** for Row 4: \( 0, 0 \)
- **B1** for Row 5: \( 0 \)
**(b)**
(i) **[3 marks]**
- **B1** for Row 2: \( d, d, d, d \)
- **B1** for Row 3: \( 0, 0, 0 \)
- **B1** for remaining rows of \( 0 \)s
(ii) **[2 marks]**
- **B2** for \( 0 \) (or **B1** if correctly identified for a specific size)
**(c)**
(i) **[3 marks]**
- **B1** for Row 2: \( 2, 6, 18 \)
- **B1** for Row 3: \( 4, 12 \)
- **B1** for Row 4: \( 8 \)
(ii) **[2 marks]**
- **B2** for \( 16 \) (or **M1** for correct partial working showing Row 4: \( 8, 24 \))
(iii) **[3 marks]**
- **M1** for identifying the geometric progression of bottom values (e.g. 4, 8, 16)
- **A2** for \( 2^{k-1} \) (or **A1** for \( 2^k / 2 \))
**(d)**
(i) **[2 marks]**
- **B1** for Row 2 and Row 3 correct
- **B1** for Row 4: \( 1 \)
(ii) **[2 marks]**
- **B2** for \( 4 \) (or **M1** for drawing the correct full triangle)
(iii) **[3 marks]**
- **M1** for attempting a valid binary row starting/ending with a single 1
- **A2** for \( 1, 0, 0, 0 \) or \( 0, 0, 0, 1 \)
(iv) **[2 marks]**
- **C1** for showing that \(|1-0|=1\) and \(|0-0|=0\) preserves the pattern
- **C1** for concluding that this propagates down the left boundary