Fatskills
Practice. Master. Repeat.
Study Guide: How to Solve: Sequences and Series (Arithmetic, Geometric, Sum to Infinity, Sigma Notation)
Source: https://www.fatskills.com/gcse-math/chapter/how-to-solve-sequences-and-series-arithmetic-geometric-sum-to-infinity-sigma-notation

How to Solve: Sequences and Series (Arithmetic, Geometric, Sum to Infinity, Sigma Notation)

By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.

⏱️ ~6 min read

How to Solve: Sequences and Series (Arithmetic, Geometric, Sum to Infinity, Sigma Notation)

GCSE & A-Level Maths


Introduction

"Mastering sequences and series doesn’t just get you 10–15 marks on your exam—it’s the key to predicting loan repayments, calculating investment growth, and even cracking coding algorithms. One wrong formula, and your answer could be off by thousands. Let’s make sure you nail it."


What You Need To Know First

  1. Basic algebra – Rearranging equations, solving for unknowns.
  2. Indices (powers) – Rules like ( a^{m+n} = a^m \times a^n ).
  3. Substitution – Plugging numbers into formulas.

Key Vocabulary

Term Plain-English Definition Quick Example
Sequence A list of numbers following a pattern. 2, 5, 8, 11… (add 3 each time)
Series The sum of terms in a sequence. 2 + 5 + 8 + 11 = 26
Arithmetic A sequence where you add the same number each time. 3, 7, 11, 15… (common difference = 4)
Geometric A sequence where you multiply by the same number. 2, 6, 18, 54… (common ratio = 3)
Sum to infinity The total of an infinite geometric series (if it converges). ( 1 + \frac{1}{2} + \frac{1}{4} + … = 2 )
Sigma notation A shorthand way to write sums. ( \sum_{r=1}^{4} r^2 = 1 + 4 + 9 + 16 = 30 )

Formulas To Know

1. Arithmetic Sequences

  • nth term: ( a_n = a_1 + (n-1)d )
  • ( a_n ) = nth term
  • ( a_1 ) = first term
  • ( d ) = common difference
  • MEMORISE THIS

  • Sum of first n terms: ( S_n = \frac{n}{2} (2a_1 + (n-1)d) ) OR ( S_n = \frac{n}{2} (a_1 + a_n) )

  • MEMORISE THIS (both forms are useful)

2. Geometric Sequences

  • nth term: ( a_n = a_1 \times r^{n-1} )
  • ( r ) = common ratio
  • MEMORISE THIS

  • Sum of first n terms: ( S_n = \frac{a_1 (1 - r^n)}{1 - r} ) (if ( r \neq 1 ))

  • MEMORISE THIS

  • Sum to infinity: ( S_\infty = \frac{a_1}{1 - r} ) (only if ( |r| < 1 ))

  • MEMORISE THIS

3. Sigma Notation

  • ( \sum_{r=k}^{n} f(r) ) means "sum ( f(r) ) from ( r = k ) to ( r = n )"
  • Given on exam sheet (but you must understand how to use it)

Step-by-Step Method

How to Solve Any Sequence/Series Problem

  1. Identify the type – Is it arithmetic, geometric, or neither?
  2. Arithmetic: Difference between terms is constant.
  3. Geometric: Ratio between terms is constant.

  4. Write down what you know – First term (( a_1 )), common difference (( d )) or ratio (( r )), number of terms (( n )).

  5. Pick the right formula – nth term, sum, or sum to infinity?

  6. Substitute and solve – Plug numbers into the formula.

  7. Check your answer – Does it make sense? (e.g., sum can’t be negative if all terms are positive).


Worked Example (Using Steps)

Question: An arithmetic sequence has first term 5 and common difference 3. Find the 10th term and the sum of the first 10 terms.

Step 1: It’s arithmetic (difference = 3). Step 2: ( a_1 = 5 ), ( d = 3 ), ( n = 10 ). Step 3: - For the 10th term: ( a_n = a_1 + (n-1)d ) - For the sum: ( S_n = \frac{n}{2} (2a_1 + (n-1)d) ) Step 4: - 10th term: ( a_{10} = 5 + (10-1) \times 3 = 5 + 27 = 32 ) - Sum: ( S_{10} = \frac{10}{2} (2 \times 5 + 9 \times 3) = 5 (10 + 27) = 5 \times 37 = 185 ) Step 5: Check – 10th term is reasonable (starts at 5, adds 3 each time). Sum is positive, as expected.


Worked Examples

Example 1 – Basic (Arithmetic)

Question: A sequence starts 7, 11, 15, 19… Find the 20th term and the sum of the first 20 terms.

Solution: 1. Identify: Arithmetic (difference = 4). 2. Known: ( a_1 = 7 ), ( d = 4 ), ( n = 20 ). 3. Formulas:
- nth term: ( a_n = a_1 + (n-1)d )
- Sum: ( S_n = \frac{n}{2} (2a_1 + (n-1)d) ) 4. Substitute:
- 20th term: ( a_{20} = 7 + 19 \times 4 = 7 + 76 = 83 )
- Sum: ( S_{20} = \frac{20}{2} (14 + 19 \times 4) = 10 (14 + 76) = 10 \times 90 = 900 ) 5. Check: 20th term is ( 7 + 19 \times 4 = 83 ) (correct). Sum is positive.

What we did and why: We used the arithmetic formulas because the sequence adds 4 each time. Always write down the known values first.


Example 2 – Medium (Geometric)

Question: A geometric sequence has first term 3 and common ratio 2. Find the 6th term and the sum of the first 6 terms.

Solution: 1. Identify: Geometric (ratio = 2). 2. Known: ( a_1 = 3 ), ( r = 2 ), ( n = 6 ). 3. Formulas:
- nth term: ( a_n = a_1 \times r^{n-1} )
- Sum: ( S_n = \frac{a_1 (1 - r^n)}{1 - r} ) 4. Substitute:
- 6th term: ( a_6 = 3 \times 2^{5} = 3 \times 32 = 96 )
- Sum: ( S_6 = \frac{3 (1 - 2^6)}{1 - 2} = \frac{3 (1 - 64)}{-1} = \frac{3 \times -63}{-1} = 189 ) 5. Check: 6th term is ( 3 \times 32 = 96 ) (correct). Sum is positive.

What we did and why: We used geometric formulas because the sequence multiplies by 2 each time. Remember: ( r^n ) means ( r ) to the power of ( n ), not ( r \times n ).


Example 3 – Exam-Style (Sigma Notation)

Question: Evaluate ( \sum_{r=1}^{5} (2r + 1) ).

Solution: 1. Identify: Sigma notation means sum the expression ( 2r + 1 ) from ( r = 1 ) to ( r = 5 ). 2. Write out the terms:
- ( r = 1 ): ( 2(1) + 1 = 3 )
- ( r = 2 ): ( 2(2) + 1 = 5 )
- ( r = 3 ): ( 2(3) + 1 = 7 )
- ( r = 4 ): ( 2(4) + 1 = 9 )
- ( r = 5 ): ( 2(5) + 1 = 11 ) 3. Sum them: ( 3 + 5 + 7 + 9 + 11 = 35 ) 4. Alternative (using arithmetic sum):
- First term (( a_1 )) = 3, last term (( a_5 )) = 11, ( n = 5 ).
- Sum = ( \frac{n}{2} (a_1 + a_n) = \frac{5}{2} (3 + 11) = \frac{5}{2} \times 14 = 35 ) 5. Check: Both methods give 35.

What we did and why: Sigma notation is just a shorthand for adding terms. Writing them out avoids mistakes. The arithmetic sum formula is faster for large ( n ).


Common Mistakes

  1. Mistake: Using the arithmetic sum formula for a geometric sequence.
  2. WHY IT HAPPENS: Confusing the two types of sequences.
  3. CORRECT APPROACH: Always check if the sequence adds (arithmetic) or multiplies (geometric).

  4. Mistake: Forgetting ( n-1 ) in the nth term formula.

  5. WHY IT HAPPENS: Misremembering the formula as ( a_n = a_1 + nd ) instead of ( a_n = a_1 + (n-1)d ).
  6. CORRECT APPROACH: Write the formula down every time.

  7. Mistake: Using the sum to infinity formula when ( |r| \geq 1 ).

  8. WHY IT HAPPENS: Not checking if the series converges.
  9. CORRECT APPROACH: Only use ( S_\infty = \frac{a_1}{1 - r} ) if ( |r| < 1 ).

  10. Mistake: Misinterpreting sigma notation (e.g., ( \sum_{r=1}^{3} r^2 ) as ( (1+2+3)^2 )).

  11. WHY IT HAPPENS: Confusing the sum of squares with the square of sums.
  12. CORRECT APPROACH: Write out the terms: ( 1^2 + 2^2 + 3^2 = 1 + 4 + 9 = 14 ).

  13. Mistake: Sign errors in the geometric sum formula.

  14. WHY IT HAPPENS: Forgetting the denominator is ( 1 - r ), not ( r - 1 ).
  15. CORRECT APPROACH: Write the formula as ( S_n = \frac{a_1 (1 - r^n)}{1 - r} ) and substitute carefully.

Exam Traps

  1. Trap: The question gives a sequence but doesn’t say if it’s arithmetic or geometric.
  2. How to Spot it: Look for keywords like "adds 2 each time" (arithmetic) or "multiplies by 2" (geometric).
  3. How to Avoid it: Check the difference/ratio between terms before choosing a formula.

  4. Trap: Sum to infinity questions where ( |r| \geq 1 ).

  5. How to Spot it: The question asks for "sum to infinity" but the ratio is 2 or -3.
  6. How to Avoid it: Remember: sum to infinity only exists if ( |r| < 1 ). If not, write "diverges" or "no sum."

  7. Trap: Sigma notation with a lower limit not equal to 1.

  8. How to Spot it: ( \sum_{r=3}^{6} r^2 ) (starts at ( r = 3 ), not 1).
  9. How to Avoid it: Write out the terms: ( 3^2 + 4^2 + 5^2 + 6^2 ). Don’t assume it starts at 1.

1-Minute Recap

"Here’s the night-before cheat sheet: 1. Arithmetic sequences: Add the same number each time. Use ( a_n = a_1 + (n-1)d ) for the nth term and ( S_n = \frac{n}{2} (2a_1 + (n-1)d) ) for the sum. 2. Geometric sequences: Multiply by the same number each time. Use ( a_n = a_1 \times r^{n-1} ) and ( S_n = \frac{a_1 (1 - r^n)}{1 - r} ). For sum to infinity, ( S_\infty = \frac{a_1}{1 - r} ) only if ( |r| < 1 ). 3. Sigma notation: Just a fancy way to write sums. Write out the terms if you’re unsure. 4. Common mistakes: Forgetting ( n-1 ), mixing up arithmetic/geometric, and sign errors in the geometric sum formula. 5. Exam traps: Check if the sequence is arithmetic or geometric, watch for ( |r| \geq 1 ) in sum to infinity, and don’t assume sigma notation starts at 1.

Memorise the formulas, practice one of each type tonight, and you’ll smash it tomorrow. Good luck!