Sequences and Series
Core Concepts
Sequences A sequence is an ordered list of numbers generated according to a specific rule or pattern. Each individual number in the sequence is called a term. The sequence is usually denoted by specifying its $n^{\text{th}}$ term (also known as the general term), which can be written as $a_n$, $u_n$, or $A_n$. The position of the term, $n$, must be a positive integer ($n \in \mathbb{N}$).
Series A series is created by summing the terms of a sequence. If a sequence is given by $u_1, u_2, u_3, \dots, u_n$, the corresponding series is $u_1 + u_2 + u_3 + \dots + u_n$. The sum of the first $n$ terms of a sequence is traditionally denoted by $S_n$.
Arithmetic Progression (A.P.) An Arithmetic Progression is a sequence of numbers in which the difference between any consecutive term and its preceding term is constant. This constant is referred to as the common difference, denoted by $d$. If the first term is $A_1 = a$, the terms of the A.P. are: $$a, \quad a+d, \quad a+2d, \quad a+3d, \dots$$ From this pattern, the general $n^{\text{th}}$ term formula is given by: $$A_n = a + (n - 1)d$$
Derivation of the Sum of an Arithmetic Series: To find the sum of the first $n$ terms, $S_n$, we write the sum forwards and then backwards: $$S_n = a + (a+d) + (a+2d) + \dots + [a + (n-1)d]$$ $$S_n = [a + (n-1)d] + [a + (n-2)d] + \dots + a$$ Adding these two equations vertically pairs the terms. Notice that every pair sums to $2a + (n-1)d$: $$2S_n = [2a + (n-1)d] + [2a + (n-1)d] + \dots + [2a + (n-1)d]$$ Since there are $n$ such pairs: $$2S_n = n[2a + (n-1)d]$$ $$S_n = \frac{n}{2}[2a + (n-1)d]$$ Alternatively, recognizing that the last term is $l = a + (n-1)d$, the formula simplifies to: $$S_n = \frac{n}{2}(a + l)$$
Geometric Progression (G.P.) A Geometric Progression is a sequence in which the ratio of any term to its preceding term is a non-zero constant. This constant is called the common ratio, denoted by $r$. If the first term is $G_1 = a$, the sequence unfolds as: $$a, \quad ar, \quad ar^2, \quad ar^3, \dots$$ The general $n^{\text{th}}$ term formula is: $$G_n = a r^{n-1}$$
Geometric Mean: If three numbers $x, y,$ and $z$ form a consecutive G.P., then the ratio is constant: $$\frac{y}{x} = \frac{z}{y} \implies y^2 = xz \implies y = \pm\sqrt{xz}$$ Here, $y$ is the geometric mean of $x$ and $z$. It is crucial to note that the mean can be negative if the common ratio $r$ is negative (creating an alternating sequence).
Derivation of the Sum of a Geometric Series: Consider the sum of the first $n$ terms: $$S_n = a + ar + ar^2 + \dots + ar^{n-1} \quad \text{--- (Equation 1)}$$ Multiply both sides of Equation 1 by the common ratio $r$: $$rS_n = ar + ar^2 + ar^3 + \dots + ar^n \quad \text{--- (Equation 2)}$$ Subtract Equation 1 from Equation 2: $$rS_n - S_n = ar^n - a$$ Factor out $S_n$ on the left and $a$ on the right: $$S_n(r - 1) = a(r^n - 1)$$ $$S_n = \frac{a(r^n - 1)}{r - 1} \quad \text{for } r > 1$$ If $r < 1$, multiplying the numerator and denominator by $-1$ avoids negative calculations: $$S_n = \frac{a(1 - r^n)}{1 - r} \quad \text{for } r < 1$$
Compound Interest Compound interest represents exponential growth, where the interest added to a principal amount also earns interest in subsequent periods. It is a direct application of a Geometric Progression. If a principal $P$ is invested at an annual interest rate $R$ (in %), the amount after 1 year is: $$A_1 = P + P\left(\frac{R}{100}\right) = P\left(1 + \frac{R}{100}\right)$$ Because the amount is multiplied by $(1 + \frac{R}{100})$ each year, the accumulated amounts at the end of each year form a G.P. with a common ratio of $r = 1 + \frac{R}{100}$. The total amount $A$ after $n$ years is: $$A = P\left(1 + \frac{R}{100}\right)^n$$ The actual compound interest earned is calculated as $I = A - P$.
Worked Examples
Example 1: Basic Arithmetic Progression Derivation If an arithmetic progression has $A_1$ as the first term and $d$ as the common difference, write the second, third, fourth and fifth terms. Establish the formula for the sum of the first five terms by using these results.
- List the terms sequentially by adding the common difference $d$:
- First term: $A_1$
- Second term: $A_2 = A_1 + d$
- Third term: $A_3 = A_1 + 2d$
- Fourth term: $A_4 = A_1 + 3d$
- Fifth term: $A_5 = A_1 + 4d$
- Establish the sum of the first five terms ($S_5$):
$$S_5 = A_1 + (A_1 + d) + (A_1 + 2d) + (A_1 + 3d) + (A_1 + 4d)$$ Group the $A_1$ terms and the $d$ terms: $$S_5 = 5A_1 + (1d + 2d + 3d + 4d)$$ $$S_5 = 5A_1 + 10d$$
- Compare this with the general formula $S_n = \frac{n}{2}[2A_1 + (n-1)d]$:
Substitute $n = 5$: $$S_5 = \frac{5}{2}[2A_1 + (5-1)d] = \frac{5}{2}[2A_1 + 4d]$$ Factor out $2$ from the bracket: $$S_5 = \frac{5}{2} \cdot 2[A_1 + 2d] = 5(A_1 + 2d) = 5A_1 + 10d$$ Both methods yield the same result, thus establishing the formula.
Example 2: Finding A.P. Parameters from Distant Terms Find the first term and the common difference of an arithmetic progression whose $5^{\text{th}}$ term is 21 and $8^{\text{th}}$ term is 30.
Solution:
- Use the $n^{\text{th}}$ term formula: $A_n = a + (n-1)d$
For $n = 5$: $a + 4d = 21 \quad \text{--- (Eq. 1)}$ For $n = 8$: $a + 7d = 30 \quad \text{--- (Eq. 2)}$
- Solve the simultaneous equations by subtraction (Eq. 2 - Eq. 1):
$$(a + 7d) - (a + 4d) = 30 - 21$$ $$3d = 9$$ $$d = 3$$
- Substitute $d = 3$ back into Equation 1 to find $a$:
$$a + 4(3) = 21$$ $$a + 12 = 21$$ $$a = 9$$ The first term is $9$ and the common difference is $3$.
Example 3: Working with Arithmetic Series given a Sum The sum of the first 11 terms of an arithmetic progression is 517. If the first term is 7, find the sum of the 4th and 9th terms.
Solution:
- Use the sum formula to find the common difference $d$:
$$S_n = \frac{n}{2}[2a + (n-1)d]$$ Given $n = 11$, $S_{11} = 517$, $a = 7$: $$517 = \frac{11}{2}[2(7) + (11-1)d]$$ $$517 \times 2 = 11[14 + 10d]$$ $$1034 = 154 + 110d$$ $$880 = 110d \implies d = 8$$
- Find the 4th and 9th terms using $A_n = a + (n-1)d$:
$$A_4 = 7 + (4-1)8 = 7 + 24 = 31$$ $$A_9 = 7 + (9-1)8 = 7 + 64 = 71$$
- Calculate their sum:
$$A_4 + A_9 = 31 + 71 = 102$$ The sum of the 4th and 9th terms is $102$.
Example 4: G.P. Formula Verification The first and second terms of a geometric progression are 3 and 9 respectively. Find the third, fourth and fifth terms. Verify that the sum of the first 5 terms is given by $S_n = G_1 \frac{r^n - 1}{r - 1}$ by using these results.
Solution:
- Determine the common ratio $r$:
$$r = \frac{G_2}{G_1} = \frac{9}{3} = 3$$
- Find the successive terms by multiplying by $r$:
- Third term ($G_3$): $9 \times 3 = 27$
- Fourth term ($G_4$): $27 \times 3 = 81$
- Fifth term ($G_5$): $81 \times 3 = 243$
- Calculate the actual sum of these 5 terms:
$$S_5 = 3 + 9 + 27 + 81 + 243 = 363$$
- Use the formula to verify:
$$S_5 = G_1 \frac{r^5 - 1}{r - 1}$$ Substitute $G_1 = 3$ and $r = 3$: $$S_5 = 3 \frac{3^5 - 1}{3 - 1} = 3 \frac{243 - 1}{2} = 3 \frac{242}{2} = 3 \times 121 = 363$$ Because both calculations yield 363, the formula is verified.
Example 5: Utilizing the Geometric Mean Concept If 3, $x-1$ and 27 are three consecutive terms of a geometric progression, find the possible values of $x$.
Solution:
- In a G.P., the ratio between consecutive terms is constant:
$$\frac{x - 1}{3} = \frac{27}{x - 1}$$
- Cross-multiply to form a quadratic equation:
$$(x - 1)^2 = 3 \times 27$$ $$(x - 1)^2 = 81$$
- Solve for $x$:
- Case 1: $x - 1 = 9 \implies x = 10$
- Case 2: $x - 1 = -9 \implies x = -8$
The possible values for $x$ are $10$ or $-8$.
Example 6: Sequence Identification Write down the first four terms of a sequence whose general term is $n(2n - 1)$. Briefly explain whether it is an arithmetic progression or a geometric progression.
Solution:
- Substitute $n = 1, 2, 3, 4$ into $a_n = n(2n - 1)$:
- $a_1 = 1(2(1) - 1) = 1(1) = 1$
- $a_2 = 2(2(2) - 1) = 2(3) = 6$
- $a_3 = 3(2(3) - 1) = 3(5) = 15$
- $a_4 = 4(2(4) - 1) = 4(7) = 28$
The first four terms are 1, 6, 15, 28.
- Test for an Arithmetic Progression (constant difference):
$$a_2 - a_1 = 6 - 1 = 5$$ $$a_3 - a_2 = 15 - 6 = 9$$ Since $5 \neq 9$, there is no common difference. It is not an A.P.
- Test for a Geometric Progression (constant ratio):
$$\frac{a_2}{a_1} = \frac{6}{1} = 6$$ $$\frac{a_3}{a_2} = \frac{15}{6} = 2.5$$ Since $6 \neq 2.5$, there is no common ratio. It is not a G.P.
Conclusion: The sequence is neither an arithmetic progression nor a geometric progression because it lacks both a common difference and a common ratio.
Example 7: Compound Interest Application A woman deposits 500,000 TZS in a savings account that pays compound interest at the rate of 12% per annum. Calculate the total amount in her account at the end of 4 years.
Solution:
- Identify the given parameters:
Principal, $P = 500,000$ TZS Rate, $R = 12\%$ Time, $n = 4$ years
- Apply the compound interest formula:
$$A = P\left(1 + \frac{R}{100}\right)^n$$ $$A = 500,000 \left(1 + \frac{12}{100}\right)^4$$ $$A = 500,000 (1.12)^4$$
- Calculate the exponent:
$$(1.12)^4 \approx 1.57351936$$
- Multiply by the principal:
$$A = 500,000 \times 1.57351936 = 786,759.68 \text{ TZS}$$ The total amount in her account at the end of 4 years is approximately 786,759.68 TZS.
Common Pitfalls & Misconceptions
- Forgetting the $\pm$ in Geometric Means:
When students solve for missing middle terms in a G.P. (e.g., $x^2 = 16$), they frequently only write $x = 4$. However, $r$ can be negative, causing sequences to alternate signs. One must always consider $x = \pm 4$.
- Confusing Sum ($S_n$) and Term ($A_n$) Formulas:
Students often mistakenly use the $n^{\text{th}}$ term formula when a question asks for the sum of $n$ terms, or vice-versa. Always underline keywords like "sum" or "value of the $10^{\text{th}}$ term" during an exam.
- Incorrect Subtraction for Common Difference:
The common difference $d$ is always $u_{n} - u_{n-1}$ (the term minus the previous term). A common error is subtracting the larger number from the smaller number regardless of order, which flips the sign of $d$ for descending sequences.
- Compound Interest Off-by-one Errors:
When problems phrase time as "at the beginning of the 3rd year" vs "at the end of the 3rd year," students often miscount $n$. Remember that $n$ in the standard formula represents the number of full interest cycles completed.
- Assuming $n$ Can Be Any Number:
$n$ represents the position of a term in a sequence and therefore must be a strictly positive integer ($1, 2, 3, \dots$). If you solve a quadratic equation for $n$ and get $n = 5$ and $n = -3.5$, only $n = 5$ is valid.
NECTA Exam Focus
Based on the analysis of recent NECTA CSEE past papers (2018–2025), the topic of Sequences and Series generally appears in Section A of Paper 1, typically carrying 4 to 6 marks. Occasionally, it is combined with Word Problems or Business Mathematics in Section B.
Recurring Themes & Question Styles:
- Formula Verification: NECTA heavily favors asking students to derive or manually verify the summation formulas for small values of $n$ (usually $n=5$), as seen in the 2018 papers.
- Simultaneous Equations: A standard test of algebra within sequences. You will frequently be given two distant terms (e.g., 5th term is 21, 8th term is 30) and asked to find the first term ($a$) and the common difference/ratio ($d$ or $r$).
- Consecutive Term Algebra: Questions providing algebraic expressions for consecutive terms (e.g., $49, x, 81$ or $3, x-1, 27$) are highly common. These require setting up an equation based on the property that differences or ratios must be equal.
- Sequence Classification: Giving a general formula (like $a_n = n(2n-1)$) and asking the student to list terms and explicitly prove why it is or isn't an A.P. or G.P. has appeared multiple times (2023, 2024).
Practice Problems
Basic Level
- Write down the first four terms of an arithmetic progression where the first term is 12 and the common difference is -3.
- The first and second terms of a geometric progression are 2 and 10 respectively. Find the third, fourth, and fifth terms.
- Find the $10^{\text{th}}$ term of a sequence whose first three consecutive terms are 5, 15 and 45. (Leave the answer in exponent form). (NECTA 2020)
Intermediate Level
- Given that 49, $x$ and 81 are consecutive terms of a geometric progression. Find the possible values of $x$ and determine the geometric mean. (NECTA 2019)
- Find the first term and the common difference of an arithmetic progression whose $4^{\text{th}}$ term is 14 and $9^{\text{th}}$ term is 34.
- Write down the first four terms of a sequence whose general term is $n^2 - 3n$. Briefly explain whether it is an arithmetic progression, a geometric progression, or neither.
Advanced / Multi-Step Level
- If the fifth and the sixth terms of a Geometric Progression (G.P.) are 162 and 486 respectively, find the common ratio, the first term, and the sum of the first four terms. (Adapted from NECTA 2021)
- The sum of the first 11 terms of an arithmetic progression is 517. If the first term is 7, find the sum of the 4th and 9th terms. (NECTA 2023)
- The third term of a G.P. is 18 and the sixth term is $-486$. Find the first term, the common ratio, and the $n^{\text{th}}$ term formula.
- A businessman borrows 1,500,000 TZS from a microfinance institution that charges compound interest at 10% per annum. How much will he owe in total at the end of 3 years? Establish how this scenario mathematically forms a Geometric Progression.
Subtopics
- Sequences
- Series
- Arithmetic progression
- Geometric progression
- Compound interest
Crosswalk Notes
Cross-version relationships are drafted in data/curricula/crosswalks/csee-basic-mathematics-2005-to-mathematics-2023.json. Partial and 2005-only mappings remain reviewable.
+ Related Pages
Syllabus Sequence
- Previous: Rates and Variations
- Next: Circles
Sibling Topics
- Numbers (I)
- Fractions
- Decimals and Percentages
- Approximations
- Numbers (II)
- Exponents and Radicals
- Logarithms
- Rates and Variations