Sequences

    Sequences in OCR GCSE Further Mathematics extend beyond standard GCSE, requiring mastery of quadratic sequences, geometric progressions, limiting values, and recurrence relations. This topic is essential for top grades, testing algebraic rigour, pattern recognition, and the ability to determine long-term behaviour of mathematical series.

    7
    Min Read
    5
    Examples
    6
    Questions
    8
    Key Terms
    🎙 Podcast Episode
    Sequences
    8:01
    0:00-8:01

    Study Notes

    Overview

    Sequences are a fundamental concept in Further Mathematics, extending far beyond the linear progressions studied at GCSE. This topic is crucial as it tests not only your algebraic manipulation skills but also your ability to recognise patterns, generalise rules, and understand the long-term behaviour of mathematical series. For the OCR Level 2 qualification, a mastery of sequences is non-negotiable for achieving a top grade. Examiners will expect candidates to confidently handle quadratic sequences, geometric progressions, and recurrence relations with a high degree of precision. Questions often combine these concepts and link to other areas of the specification, such as functions and graphing, making it a vital synoptic link. Expect to see questions that require you to derive and verify nth term formulae, determine if a number belongs to a sequence, and calculate the limiting value of a sequence as it tends to infinity. Success here demonstrates a deep mathematical understanding and a methodical, rigorous approach to problem-solving.

    Header image for Sequences topic

    Key Concepts

    Concept 1: Quadratic Sequences

    A quadratic sequence is a sequence of numbers in which the second difference between any two consecutive terms is constant. The general form of the nth term is an² + bn + c, where a, b, and c are constants. This is a significant step up from linear (arithmetic) sequences, which only have a constant first difference.

    To find the nth term of a quadratic sequence, you must follow a systematic process that examiners look for. The key is that the coefficient of the n² term, 'a', is always half of the constant second difference.

    Example: Consider the sequence 3, 8, 17, 30, 47...

    • First differences: 5, 9, 13, 17
    • Second differences: 4, 4, 4

    Since the second difference is a constant 4, we know it's a quadratic sequence. The coefficient 'a' is half of this value, so a = 2. This means our formula starts with 2n². We then subtract the 2n² sequence from our original sequence to find the linear part. For n = 1, 2, 3, 4, 5, the 2n² sequence is 2, 8, 18, 32, 50. Subtracting this from the original sequence gives: 1, 0, -1, -2, -3, which has nth term -n + 2. Therefore, the complete nth term is u_n = 2n² - n + 2.

    Finding the nth term of a quadratic sequence

    Concept 2: Geometric Sequences

    A geometric sequence (or geometric progression) is a sequence where each term after the first is found by multiplying the previous one by a fixed, non-zero number called the common ratio (r). The general form of the nth term is u_n = ar^(n-1), where 'a' is the first term.

    These sequences model exponential growth or decay and are fundamental to understanding topics like compound interest or radioactive decay. A key skill is finding the common ratio, which can be done by dividing any term by its preceding term (e.g., r = u₂ / u₁). Importantly, you must verify that the ratio is consistent across all consecutive pairs of terms before concluding that a sequence is geometric.

    Example: The sequence 2, 6, 18, 54... is geometric.

    • The first term a = 2.
    • The common ratio r = 6 / 2 = 3.
    • Verify: 18/6 = 3, 54/18 = 3. The ratio is consistent.
    • The nth term is therefore u_n = 2 × 3^(n-1).

    Concept 3: Limiting Values (Convergence and Divergence)

    This concept, primarily applied to geometric sequences, explores what happens to the terms as 'n' gets infinitely large (as n → ∞). This is a crucial concept in higher mathematics.

    • Convergence: If the common ratio 'r' is between -1 and 1 (i.e., -1 < r < 1), the terms get progressively closer to zero. We say the sequence converges to a limit of 0.
    • Divergence: If 'r' is greater than 1 or less than or equal to -1, the terms grow infinitely large (or oscillate with increasing magnitude). We say the sequence diverges.

    Examiners require precise language here. You must state that "as n approaches infinity" or use the notation "as n → ∞" to earn full communication marks. Simply calculating a large term such as u₁₀₀ is insufficient.

    Example: For the sequence u_n = 5 × (0.5)^(n-1), the common ratio r = 0.5. Since -1 < 0.5 < 1, the sequence converges to 0 as n → ∞.

    Geometric sequences and their properties

    Concept 4: Recurrence Relations

    A recurrence relation defines each term in a sequence based on one or more previous terms, rather than providing a direct formula for the nth term. The general form is u_(n+1) = f(u_n), where f is some function.

    Example: Given u₁ = 3 and u_(n+1) = 2u_n + 1, find the first five terms.

    • u₁ = 3
    • u₂ = 2(3) + 1 = 7
    • u₃ = 2(7) + 1 = 15
    • u₄ = 2(15) + 1 = 31
    • u₅ = 2(31) + 1 = 63

    Recurrence relations can be more complex, involving multiple previous terms or non-linear functions. The key is to work systematically, showing each step clearly.

    Mathematical/Scientific Relationships

    Here are the essential formulae and relationships for the Sequences topic. It is vital to know which are provided and which must be memorised.

    FormulaDescriptionStatus
    u_n = a + (n-1)dnth term of an arithmetic sequence. a is the first term, d is the common difference.Must memorise
    u_n = an² + bn + cGeneral form of a quadratic sequence. a is half the second difference.Must memorise
    u_n = ar^(n-1)nth term of a geometric sequence. a is the first term, r is the common ratio.Must memorise
    r = u_(n+1) / u_nFormula to find the common ratio (r) in a geometric sequence.Must memorise
    -1 < r < 1Condition for convergence of a geometric sequence to a limit of 0.Must memorise
    u_(n+1) = f(u_n)General form of a recurrence relation. The next term is a function of the previous term.Must memorise

    Practical Applications

    While sequences can seem abstract, they model numerous real-world phenomena. Understanding these applications can provide a deeper intuition for how they work.

    • Finance: Geometric sequences are the foundation of compound interest calculations. If you invest £1000 with a 5% annual interest rate, the value of your investment each year forms a geometric sequence with a = 1000 and r = 1.05.
    • Biology: Population growth, particularly of bacteria or viruses, can often be modelled using geometric sequences under ideal conditions. A single bacterium divides into two, those two divide into four, and so on (a=1, r=2).
    • Physics: The height a bouncing ball reaches after each bounce can be modelled by a geometric sequence. If a ball is dropped from 2 metres and bounces back to 75% of its previous height each time, the sequence of maximum heights is a geometric progression with a = 2 and r = 0.75. The concept of a limiting value is clear here – the ball eventually stops bouncing.
    • Computer Science: Algorithms, particularly those involving loops and recursion, are deeply connected to sequences. The complexity of an algorithm might be described by a recurrence relation, which helps computer scientists analyse its efficiency.

    Listen to the Podcast

    Educational podcast: Sequences in OCR GCSE Further Mathematics

    Visual Resources

    2 diagrams and illustrations

    Finding the nth term of a quadratic sequence
    Finding the nth term of a quadratic sequence
    Geometric sequences and their properties
    Geometric sequences and their properties

    Interactive Diagrams

    2 interactive diagrams to visualise key concepts

    YesNoYesNoYesNoGiven a sequenceCalculate first differencesAre first differences constant?Arithmetic Sequenceu_n = a + n-1 dCalculate second differencesAre second differences constant?Quadratic Sequenceu_n = an² + bn + cwhere a = second diff ÷ 2Check if ratio of consecutive terms is constantGeometric Sequenceu_n = ar^n-1May be a recurrence relationor more complex pattern

    Decision flowchart for identifying sequence types

    r > 1-1 < r < 1r = 1r < -1-1 < r < 0Geometric Sequenceu_n = ar^n-1What is the value of r?Sequence DIVERGESTerms increase to +∞Sequence CONVERGESTerms approach 0 as n → ∞Constant sequenceAll terms equal aSequence DIVERGESTerms oscillate withincreasing magnitudeSequence CONVERGESTerms oscillate butapproach 0 as n → ∞

    Convergence and divergence behaviour of geometric sequences based on common ratio r

    Worked Examples

    5 detailed examples with solutions and examiner commentary

    Practice Questions

    Test your understanding — click to reveal model answers

    Q1

    The first five terms of a sequence are 2, 5, 10, 17, 26. Find the nth term of this sequence.

    4 marks
    standard

    Hint: Calculate the first and second differences. If the second difference is constant, it's a quadratic sequence.

    Q2

    A geometric sequence has first term 80 and common ratio 0.5. (a) Write down the first four terms. (2 marks) (b) Calculate the 10th term. (2 marks)

    4 marks
    foundation

    Hint: For part (a), multiply each term by 0.5 to get the next. For part (b), use the formula u_n = ar^(n-1).

    Q3

    A sequence is defined by u_(n+1) = 3u_n - 5 with u_1 = 4. Find u_2, u_3, and u_4.

    3 marks
    foundation

    Hint: Substitute u_1 into the recurrence relation to find u_2, then use u_2 to find u_3, and so on.

    Q4

    The nth term of a sequence is u_n = 4n² - 3n + 2. (a) Calculate the 5th term. (2 marks) (b) Is 122 a term in this sequence? Show your working. (3 marks)

    5 marks
    challenging

    Hint: For part (a), substitute n = 5. For part (b), set the formula equal to 122 and solve for n. Check if n is a positive integer.

    Q5

    A geometric sequence has common ratio r = -0.4. Explain what happens to the terms of this sequence as n → ∞.

    2 marks
    standard

    Hint: Consider the condition for convergence: -1 < r < 1. What does this tell you about the long-term behaviour?

    Q6

    The first three terms of a sequence are 1, 4, 9. A student claims this is a geometric sequence with common ratio 4. Explain why the student is incorrect.

    2 marks
    standard

    Hint: Check if the ratio between consecutive terms is constant throughout the sequence.

    Key Terms

    Essential vocabulary to know

    More Further Mathematics Study Guides

    View all

    Trigonometry

    OCR
    GCSE

    This topic extends your trigonometry knowledge beyond right-angled triangles into the realm of any angle, trigonometric identities, and complex equation solving. You'll master the CAST diagram, apply the Sine and Cosine Rules to non-right-angled triangles in 2D and 3D contexts, and prove identities using fundamental relationships. This is a high-value topic in Further Maths exams, frequently appearing in multi-step problem-solving questions worth 4-6 marks.

    Proof

    OCR
    GCSE

    Proof is the art of constructing watertight algebraic arguments that demonstrate mathematical statements are true for ALL cases, not just specific examples. This topic is a cornerstone of OCR GCSE Further Mathematics, demanding rigorous logic, precise algebraic notation, and clear communication. Mastering proof unlocks high-value marks and develops critical thinking skills that extend far beyond mathematics.

    Vectors

    OCR
    GCSE

    Vectors in OCR GCSE Further Mathematics goes far beyond basic GCSE column vector arithmetic. You'll master constructing complex vector paths through geometric figures, proving collinearity using scalar multiples, and finding positions of points that divide lines in given ratios. This topic demands algebraic precision, rigorous notation, and explicit geometric reasoning—skills that examiners reward generously when demonstrated correctly.

    Inequalities

    OCR
    GCSE

    Master OCR GCSE Further Maths Inequalities (2.3) by learning to solve quadratic inequalities algebraically and graphically. This guide breaks down the critical steps, from finding roots to sketching parabolas and selecting the correct regions, ensuring you can secure every mark."

    Standard Form

    OCR
    GCSE

    This guide provides a comprehensive, exam-focused breakdown of Standard Form for OCR GCSE Further Mathematics. It covers everything from the core principles of writing numbers in the form A × 10ⁿ to performing complex calculations, ensuring you can secure every mark available on this crucial topic.

    Proof

    Edexcel
    A-Level

    Master the art of mathematical proof for your Edexcel A-Level Further Maths exam. This guide breaks down Proof by Induction into four simple steps, showing you how to secure every mark on questions involving series, divisibility, and matrices.