Study Guide

Sequences and Series

IB Mathematics: Analysis and Approaches HLΒ· 1.2 Sequences and seriesΒ· 15 min read

1. Arithmetic Sequences and Seriesβ˜…β˜…β˜†β˜†β˜†β± 5 min

πŸ“˜ Definition

Arithmetic Progression (AP)

First term , common difference

An arithmetic progression is a sequence where each term after the first is obtained by adding a constant common difference to the previous term.

Example:

has

The nth term of an AP follows a linear formula derived from extending the sequence pattern:

un=u1+(nβˆ’1)du_n = u_1 + (n-1)d

The sum of the first terms of an AP is derived by pairing first and last terms to get constant sums, giving two equivalent formulas:

Sn=n2(2u1+(nβˆ’1)d)=n2(u1+un)S_n = \frac{n}{2} \left( 2u_1 + (n-1)d \right) = \frac{n}{2} (u_1 + u_n)
πŸ“ Worked Example

The 3rd term of an AP is 10, and the 7th term is 34. Find the first term and the sum of the first 10 terms.

  1. 1

    Write the nth term formula for the two given terms:

  2. 2
    u3=u1+2d=10u7=u1+6d=34u_3 = u_1 + 2d = 10 \\ u_7 = u_1 + 6d = 34
  3. 3

    Subtract the first equation from the second to eliminate :

  4. 4
    (u1+6d)βˆ’(u1+2d)=34βˆ’104d=24d=6(u_1 + 6d) - (u_1 + 2d) = 34 - 10 \\ 4d = 24 \\ d = 6
  5. 5

    Substitute back to find :

  6. 6
    u1+2(6)=10u1=βˆ’2u_1 + 2(6) = 10 \\ u_1 = -2
  7. 7

    Calculate the sum of the first 10 terms:

  8. 8
    S10=102(2(βˆ’2)+9(6))=5(βˆ’4+54)=250S_{10} = \frac{10}{2} \left( 2(-2) + 9(6) \right) = 5 (-4 + 54) = 250

Exam tip:

Always confirm whether the question asks for the nth term or the sum of the first n terms β€” mixing these up is an extremely common avoidable error.

2. Geometric Sequences and Seriesβ˜…β˜…β˜…β˜†β˜†β± 5 min

πŸ“˜ Definition

Geometric Progression (GP)

First term , common ratio

A geometric progression is a sequence where each term after the first is obtained by multiplying the previous term by a constant common ratio.

Example:

has

The nth term of a GP follows an exponential formula, from repeated multiplication by the common ratio:

un=u1rnβˆ’1u_n = u_1 r^{n-1}

The sum of the first terms of a GP uses the standard finite geometric series formula, which works for all . When , all terms are equal to , so .

Sn=u11βˆ’rn1βˆ’r=u1rnβˆ’1rβˆ’1,rβ‰ 1S_n = u_1 \frac{1 - r^n}{1 - r} = u_1 \frac{r^n - 1}{r - 1}, \quad r \neq 1
πŸ“ Worked Example

The 2nd term of a GP is 6, and the 5th term is -162. Find the common ratio and the sum of the first 4 terms.

  1. 1

    Write the nth term for each given term:

  2. 2
    u2=u1r=6u5=u1r4=βˆ’162u_2 = u_1 r = 6 \\ u_5 = u_1 r^4 = -162
  3. 3

    Divide the second equation by the first to eliminate :

  4. 4
    u1r4u1r=βˆ’1626r3=βˆ’27r=βˆ’3\frac{u_1 r^4}{u_1 r} = \frac{-162}{6} \\ r^3 = -27 \\ r = -3
  5. 5

    Find by substituting back:

  6. 6
    u1(βˆ’3)=6u1=βˆ’2u_1 (-3) = 6 \\ u_1 = -2
  7. 7

    Calculate the sum of the first 4 terms:

  8. 8
    S4=(βˆ’2)1βˆ’(βˆ’3)41βˆ’(βˆ’3)=(βˆ’2)1βˆ’814=40S_4 = (-2) \frac{1 - (-3)^4}{1 - (-3)} = (-2) \frac{1 - 81}{4} = 40

3. Infinite Geometric Series and Convergenceβ˜…β˜…β˜…β˜†β˜†β± 5 min

For an infinite geometric series, the sum of all terms only approaches a finite value if the common ratio satisfies a specific condition, called convergence. If the series does not converge, it diverges and has no finite sum.

πŸ“˜ Definition

Convergent Infinite Geometric Series

An infinite geometric series converges to a finite sum if and only if , where is the common ratio. The sum to infinity is given by the formula below.

Example:

converges to 2

S∞=u11βˆ’r,∣r∣<1S_\infty = \frac{u_1}{1 - r}, \quad |r| < 1
πŸ“ Worked Example

A convergent infinite geometric series has a first term of 12 and a sum to infinity of 18. Find the common ratio and the 4th term of the series.

  1. 1

    Use the sum to infinity formula to solve for :

  2. 2
    S∞=u11βˆ’r18=121βˆ’rS_\infty = \frac{u_1}{1 - r} \\ 18 = \frac{12}{1 - r}
  3. 3

    Rearrange to find :

  4. 4
    1βˆ’r=1218=23r=1βˆ’23=131 - r = \frac{12}{18} = \frac{2}{3} \\ r = 1 - \frac{2}{3} = \frac{1}{3}
  5. 5

    Confirm the convergence condition is satisfied: , which is valid.

  6. 6

    Calculate the 4th term:

  7. 7
    u4=u1r3=12(13)3=12Γ—127=49u_4 = u_1 r^3 = 12 \left( \frac{1}{3} \right)^3 = 12 \times \frac{1}{27} = \frac{4}{9}

4. Common Pitfalls

Wrong move:

Using instead of in the nth term formula for AP/GP

Why:

The first term corresponds to , so the exponent/multiplier must be to get as expected. Using shifts all terms by one position.

Correct move:

Always use for AP and for GP, unless the problem explicitly defines the sequence starting at index 0.

Wrong move:

Discarding negative solutions for the common ratio in GPs

Why:

IB exam questions regularly use negative common ratios, but many students incorrectly discard negative solutions assuming is positive.

Correct move:

Keep negative values of unless the problem explicitly states all terms of the sequence are positive.

Wrong move:

Using the infinite sum formula for

Why:

The infinite sum formula only applies to convergent series. If , terms grow in magnitude and the series diverges.

Correct move:

Always confirm before using , and state that the infinite sum does not exist if .

Wrong move:

Incorrectly counting the number of terms for a sum between two positions

Why:

For example, the sum from the 3rd to 7th term has 5 terms, not terms.

Correct move:

Calculate the number of terms as , or use to get the correct sum automatically.

5. Quick Reference Cheatsheet

Concept

nth term

Sum of first n terms

Key rule/formula

Arithmetic Progression

Constant common difference

Geometric Progression ()

Constant common ratio

Geometric Progression ()

All terms equal to

Infinite Geometric Series

Same as finite GP

N/A

; diverges if

6. Frequently Asked

When is an infinite geometric series convergent?

An infinite geometric series converges if and only if the absolute value of the common ratio is less than 1: . If , the series diverges and has no finite sum.

What is the difference between a sequence and a series?

A sequence is an ordered list of individual terms, while a series is the sum of the terms of a sequence.

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2025 Β· 1

    Arithmetic sequence sum problem

  • 2024 Β· 2

    Geometric series convergence problem

  • 2023 Β· 1

    Mixed AP/GP problem

Going deeper

What's Next

Sequences and series are foundational for almost all further topics in IB AA HL, including the binomial theorem, Maclaurin and Taylor series in calculus, and discrete probability models. This topic regularly appears in both Paper 1 and Paper 2 exams, often combined with logarithms, exponentials or financial math to create extended response questions. Mastery of AP/GP formulas and convergence conditions will make it much easier to tackle more advanced series topics later in the syllabus.