Mixed Problems
1. **Problem statement:**
(i) Find the common difference $a$ given $a_{11}=7$, $a_{22}=54$, and the sum of the first 6 terms of an arithmetic progression (AP) is 72 where the 8th term is 27.
(ii) For a sequence where the nth term is seven times the (n-1)th term, find (a) the sum of the nth terms and (b) the sum of the first 8 terms.
(c) Matrix operations: (i) Convert Matrix A to upper triangular form, (ii) find the reduced row echelon form of Matrix B, and (iii) find the rank of Matrix C.
2. (a) Expand $(x-2)^5$.
(b) Use induction to prove $\sum_{r=1}^n 2^r = 2^{n+1} - 2$.
(c) (i) Find the term independent of $x$ in $(x^2 - \frac{1}{x})^{10}$.
(ii) Use induction to prove $1^2 + 2^2 + \cdots + n^2 = \frac{n(n+1)(2n+1)}{6}$.
---
### Part (i): Arithmetic progression
1. The $n$th term of an AP is given by $a_n = a_1 + (n-1)d$. We know $a_{11} = 7$ and $a_{22} = 54$.
2. Using $a_{11} = a_1 + 10d = 7$ and $a_{22} = a_1 + 21d = 54$, subtract to eliminate $a_1$:
$$
(a_1 + 21d) - (a_1 + 10d) = 54 - 7 \Rightarrow 11d = 47 \Rightarrow d = \frac{47}{11}.
$$
3. Substitute $d$ into $a_1 + 10d = 7$:
$$
a_1 + 10 \times \frac{47}{11} = 7 \Rightarrow a_1 = 7 - \frac{470}{11} = \frac{77 - 470}{11} = -\frac{393}{11}.
$$
4. Sum of first 6 terms $S_6 = \frac{6}{2}[2a_1 + (6-1)d] = 3[2 \times (-\frac{393}{11}) + 5 \times \frac{47}{11}] = 3\left(-\frac{786}{11} + \frac{235}{11} \right) = 3 \times (-\frac{551}{11}) = -\frac{1653}{11} \neq 72$.
This contradicts the problem statement; perhaps a misinterpretation in given data or a separate 'a' to find.
### Part (ii): nth term is seven times the previous
1. The sequence is geometric with ratio $r=7$.
2. General term $a_n = a_1 \times 7^{n-1}$.
(a) Sum of $n$ terms:
$$
S_n = a_1 \frac{7^n - 1}{7 - 1} = a_1 \frac{7^n - 1}{6}.
$$
(b) Sum of first 8 terms:
$$
S_8 = a_1 \frac{7^8 - 1}{6}.
$$
### Part (c)
(i) Matrix A = $\begin{bmatrix}3 & 6 & 1 \\ 5 & 2 & 4 \\ 1 & 3 & 2\end{bmatrix}$
- Use elementary row operations to make zeros below pivot in first column:
- $R_2 \to R_2 - \frac{5}{3} R_1$
- $R_3 \to R_3 - \frac{1}{3} R_1$
- Then eliminate below pivot in second column.
(ii) Reduced Row Echelon Form of B = $\begin{bmatrix}0 & 2 & 5 \\ 0 & 1 & 4 \\ 1 & 0 & 1\end{bmatrix}$
- Swap $R_1$ and $R_3$ to have pivot in upper left.
- Normalize pivots and eliminate above and below.
(iii) Rank of C = $\begin{bmatrix}1 & 2 & 3 \\ 5 & 1 & 2 \\ 3 & 5 & 2\end{bmatrix}$
- Use row operations to find number of non-zero rows.
### 2 (a) Expand $(x-2)^5$ using binomial theorem:
$$
(x-2)^5 = \sum_{k=0}^5 \binom{5}{k} x^{5-k}(-2)^k = x^5 - 10x^4 + 40x^3 - 80x^2 + 80x - 32.
$$
### 2 (b) Proof by induction:
- Base case $n=1$: $2^1 = 2$ and right side: $2^{1+1} - 2 = 4 - 2 = 2$. True.
- Assume true for $n=k$:
$$
\sum_{r=1}^k 2^r = 2^{k+1} - 2.
$$
- For $n=k+1$:
$$
\sum_{r=1}^{k+1}2^r = \sum_{r=1}^k 2^r + 2^{k+1} = (2^{k+1}-2) + 2^{k+1} = 2 \times 2^{k+1} - 2 = 2^{k+2} - 2.
$$
- Hence, true for $k+1$. Induction complete.
### 2 (c) (i) Term independent of $x$ in $(x^2 - \frac{1}{x})^{10}$:
- General term: $T_{r+1} = \binom{10}{r} (x^2)^{10-r} (-\frac{1}{x})^r = \binom{10}{r} (-1)^r x^{20 - 3r}$.
- Set power of $x$ zero:
$$
20 - 3r = 0 \Rightarrow r = \frac{20}{3},
$$
not integer, so no term is exactly independent of $x$. Check nearest integer powers:
- For $r=6$: power $= 20 - 18 = 2$, for $r=7$: $20 - 21 = -1$, so no term independent.
(ii) Induction to prove $1^2 + 2^2 + ... + n^2 = \frac{n(n+1)(2n+1)}{6}$:
- Base case $n=1$: $1 = \frac{1\times 2\times 3}{6} = 1$, true.
- Assume true for $n=k$.
- For $n=k+1$:
$$
\sum_{r=1}^{k+1} r^2 = \sum_{r=1}^k r^2 + (k+1)^2 = \frac{k(k+1)(2k+1)}{6} + (k+1)^2.
$$
- Simplify to get the formula for $k+1$ and verify it equals
$$
\frac{(k+1)(k+2)(2k+3)}{6}.
$$
- This completes the proof.
---
Final answers:
- (i) $d=\frac{47}{11}$, $a_1 = -\frac{393}{11}$.
- (ii) $S_n = a_1 \frac{7^n - 1}{6}$, $S_8 = a_1 \frac{7^8 - 1}{6}$.
- (c) Matrix row operations as above.
- (2a) $(x-2)^5 = x^5 -10x^4 + 40x^3 - 80x^2 + 80x -32$.
- (2b) Proven sum of powers of 2 formula.
- (2c)(i) No term independent of $x$ in given binomial expansion.
- (2c)(ii) Sum of squares formula proven by induction.