Sequences

๐Ÿ†Practice series / sequences

What is a Sequence?

Mathematical sequences are a group of terms with a certain rule that dictates a certain operation must be performed and repeated in order to get from one term to the next.
The operation can be addition, subtraction, multiplication, division, or any other mathematical operation.

For example, the following is a basic numerical series:
1,2,3,4,5 1, 2, 3, 4, 5

To get from one term to the next in the sequence we add +1 +1 .
2=1+1 2 = 1+1
3=2+1 3 = 2+1
4=3+1 4 = 3+1
And so on.

Using proper notation:

  • aโ‚ = 1 (first term)
  • aโ‚‚ = 2 (second term)
  • aโ‚ƒ = 3 (third term)
  • aโ‚„ = 4 (fourth term)
  • aโ‚… = 5 (fifth term)

The pattern: Add 1 to get the next term

  • aโ‚‚ = aโ‚ + 1 = 1 + 1 = 2
  • aโ‚ƒ = aโ‚‚ + 1 = 2 + 1 = 3
  • aโ‚„ = aโ‚ƒ + 1 = 3 + 1 = 4
  • And so on...

This is called an arithmetic sequence because we add the same value (called the common difference) to get from one term to the next.

Key Characteristics of Sequences

  1. Order Matters: Terms have specific positions
  • 1st term, 2nd term, 3rd term, etc.
  • The position of each term is crucial to the sequence
  1. Standard Notation:
  • We typically denote sequences using subscript notation: aโ‚, aโ‚‚, aโ‚ƒ, aโ‚„, ...
  • aโ‚™ represents the nth term (the general term)
  • The subscript indicates the position of the term
  1. Pattern or Rule:
  • There's a relationship that connects the terms
  • This rule can involve addition, subtraction, multiplication, division, or more complex mathematical operations

Comparison of sequences: The arithmetic sequence starts at -6 and increases by 7 each time (-6, 1, 8, 15, 22). The geometric sequence starts at 1 and multiplies by 3 each time (1, 3, 9, 27, 81). Arrows indicate the operation between term


Start practice

Test yourself on series / sequences!

Is there a term-to-term rule for the sequence below?

18 , 22 , 26 , 30

Practice more now

Types of Mathematical Sequences

Now that we understand the basics, let's explore different types of sequences. Each type follows its own unique pattern, and recognizing these patterns is key to working with sequences effectively.

1. Arithmetic Sequences

Definition: A sequence where we add the same number (called the common difference) to get from one term to the next.

General Pattern: an+1=an+da_{n+1} = a_n + d (where dd is the common difference)

Example: 3,7,11,15,19,โ€ฆ3, 7, 11, 15, 19, \ldots

  • a1=3a_1 = 3
  • Common difference d=4d = 4
  • Pattern: a2=3+4=7a_2 = 3 + 4 = 7, a3=7+4=11a_3 = 7 + 4 = 11, etc.
  • General formula: an=3+(nโˆ’1)ร—4a_n = 3 + (n-1) \times 4

2. Geometric Sequences

Definition: A sequence where we multiply by the same number (called the common ratio) to get from one term to the next.

General Pattern: an+1=anร—ra_{n+1} = a_n \times r (where rr is the common ratio)

Example: 2,6,18,54,162,โ€ฆ2, 6, 18, 54, 162, \ldots

  • a1=2a_1 = 2
  • Common ratio r=3r = 3
  • Pattern: a2=2ร—3=6a_2 = 2 \times 3 = 6, a3=6ร—3=18a_3 = 6 \times 3 = 18, etc.
  • General formula: an=2ร—3nโˆ’1a_n = 2 \times 3^{n-1}

3. The Famous Fibonacci Sequence

Definition: Each term is the sum of the two preceding terms.

Pattern: an=anโˆ’1+anโˆ’2a_n = a_{n-1} + a_{n-2} (starting with a1=1a_1 = 1, a2=1a_2 = 1)

The Sequence:1,1,2,3,5,8,13,21,34,55,โ€ฆ1, 1, 2, 3, 5, 8, 13, 21, 34, 55, \ldots

How it works:

  • a1=1a_1 = 1, a2=1a_2 = 1 (given starting values)
  • a3=a1+a2=1+1=2a_3 = a_1 + a_2 = 1 + 1 = 2
  • a4=a2+a3=1+2=3a_4 = a_2 + a_3 = 1 + 2 = 3
  • a5=a3+a4=2+3=5a_5 = a_3 + a_4 = 2 + 3 = 5
  • a6=a4+a5=3+5=8a_6 = a_4 + a_5 = 3 + 5 = 8

Fun Fact: The Fibonacci sequence appears frequently in nature, from flower petals to spiral galaxies!

4. Quadratic Sequences

Definition: Sequences where the second differences between terms are constant.

Example:1,4,9,16,25,โ€ฆ1, 4, 9, 16, 25, \ldots (perfect squares)

  • First differences: 3,5,7,9,โ€ฆ3, 5, 7, 9, \ldots
  • Second differences: 2,2,2,โ€ฆ2, 2, 2, \ldots (constant!)
  • General formula: an=n2a_n = n^2

5. Mixed Operation Sequences

Some sequences use combinations of operations:

Example 1: 1,3,9,19,33,โ€ฆ1, 3, 9, 19, 33, \ldots

  • Pattern: multiply by 22, then add 11
  • a1=1a_1 = 1
  • a2=(1ร—2)+1=3a_2 = (1 \times 2) + 1 = 3
  • a3=(3ร—2)+3=9a_3 = (3 \times 2) + 3 = 9
  • a4=(9ร—2)+1=19a_4 = (9 \times 2) + 1 = 19

Example 2: 10,5,15,7.5,22.5,โ€ฆ10, 5, 15, 7.5, 22.5, \ldots

  • Pattern alternates: รท2\div 2, then ร—3\times 3
  • 10รท2=5โ†’5ร—3=15โ†’15รท2=7.5โ†’7.5ร—3=22.510 \div 2 = 5 \rightarrow 5 \times 3 = 15 \rightarrow 15 \div 2 = 7.5 \rightarrow 7.5 \times 3 = 22.5

How to Identify Sequence Types

Step-by-step approach:

  1. Look at differences between consecutive terms
    • If differences are constant โ†’\rightarrow Arithmetic sequence
  1. Look at ratios between consecutive terms
    • If ratios are constant โ†’\rightarrow Geometric sequence
  1. Check second differences
    • If second differences are constant โ†’\rightarrow Quadratic sequence
  1. Look for recursive patterns
    • Does each term depend on previous terms? โ†’\rightarrow Recursive sequence (like Fibonacci)
  1. Test for mixed operations
    • Try different combinations of operations

Why Understanding Sequence Types Matters

  • Problem Solving: Different types require different solution strategies
  • Pattern Recognition: Helps predict future terms
  • Real-World Applications: Sequences model everything from population growth to financial investments
  • Mathematical Foundation: Essential for calculus, number theory, and advanced mathematics

Next, we will present some more complex sequences of numbers, including one of the most famous: the Fibonacci sequence.

some more complex sequences of numbers


If you are interested in this article, you may also be interested in the following articles:

You can find a variety of useful articles about mathematics in Tutorela !


Examples of Sequences

Exercise 1

2,4,8,16,32 2, 4, 8, 16, 32
In this sequence, to get from one term to the next we will multiply by 2 2 .

2 2

4=2ร—2 4=2\times2

8=2ร—4 8=2\times4

16=2ร—8 16=2\times8

And so on.


Join Over 30,000 Students Excelling in Math!
Endless Practice, Expert Guidance - Elevate Your Math Skills Today
Test your knowledge

Exercise 2

3,9,27,81,243 3, 9, 27, 81, 243
In this sequence, to get from one term to the next we need to multiply by 3 3 .
3 3

9=3ร—3 9=3\times3

27=9ร—3 27=9\times3

81=27ร—3 81=27\times3

243=81ร—3 243=81\times3

And so on.


Exercise 3

6,4,2,0,โˆ’2 6, 4, 2, 0, -2

In this sequence, to get from one term to the next we need to subtract 2 2 .

6 6

4=6โˆ’2 4=6-2

2=4โˆ’2 2=4-2

0=2โˆ’2 0=2-2

โˆ’2=0โˆ’2 -2=0-2


Do you know what the answer is?

Exercise 4

1000,500,250,125,62.5 1000, 500, 250, 125, 62.5
In this example, the operation used is division. In order to get from one term to the next, we divide the number by 2 2 .

1000 1000

500=1000:2 500=1000:2

250=500:2 250=500:2

125=250:2 125=250:2

62.6=125:2 62.6=125:2


Exercise 5

320,80,20,5 320, 80, 20, 5

The rule of this sequence is to divide each number by 4 4 to find the next number.

320 320

80=320:4 80=320:4

20=80:420=80:4

5=20:4 5=20:4


Check your understanding

Exercises

Try to work out the rule for each sequence:

  • 1,3.75,6.5,9.25,12 1,3.75,6.5,9.25,12
  • 7,49,343,2401,16807 7,49,343,2401,16807
  • 0,โˆ’15,โˆ’30,โˆ’45,โˆ’60,โˆ’75 0,-15,-30,-45,-60,-75
  • 891,297,99,33,11 891,297,99,33,11
  • 2,8,512,134217728 2,8,512,134217728

Review Questions

What are sequences in mathematics?

Sequences are ordered sets of numbers that follow a rule or pattern.


Do you think you will be able to solve it?

What is a sequence and a sequence rule?

A sequence is a set of ordered numbers. The numbers follow a rule that tells us how to obtain the numbers of the sequence using the previous ones. Many times the rules are governed by the operations of addition, subtraction, multiplication, division, or some combination thereof.


What types of sequences are there in mathematics?

There are many types of sequences. For example, increasing and decreasing sequences, in which the numbers are either increasing or decreasing and following a certain pattern. There are also very famous sequences that have their own name, such as the Fibonacci sequence. In this series, the two previous numbers must be added to obtain the next number.


Test your knowledge

Examples with solutions for Series / Sequences

Exercise #1

12 โ˜ 10 โ˜ 8 7 6 5 4 3 2 1

Which numbers are missing from the sequence so that the sequence has a term-to-term rule?

Video Solution

Step-by-Step Solution

It is possible to see that there is a difference of one number between each number.

That is, 1 is added to each number and it will be the next number:

1+1=2 1+1=2

2+1=3 2+1=3

3+1=4 3+1=4

Etcetera. Therefore, the next numbers missing in the sequence will be:8+1=9 8+1=9

10+1=11 10+1=11

Answer

11 , 9

Exercise #2

Look at the following set of numbers and determine if there is any property, if so, what is it?

94,96,98,100,102,104 94,96,98,100,102,104

Video Solution

Step-by-Step Solution

One can observe that the difference between each number is 2.

That is, with each leap the next number increases by 2:

94+2=96 94+2=96

96+2=98 96+2=98

98+2=100 98+2=100

and so forth......

Answer

+2 +2

Exercise #3

Look at the following set of numbers and determine if there is a rule. If there is one, what is it?

5,10,15,20,25,30 5,10,15,20,25,30

Video Solution

Step-by-Step Solution

To solve this problem of finding the rule for the sequence 5,10,15,20,25,30 5, 10, 15, 20, 25, 30 , we will follow these steps:

  • Step 1: Analyze the difference between consecutive numbers in the sequence.
  • Step 2: Identify a consistent pattern or rule.
  • Step 3: Compare the pattern against the given multiple-choice answers.

Now, let's work through each step:

Step 1: Calculate the difference between consecutive terms:

10โˆ’5=510 - 5 = 5

15โˆ’10=515 - 10 = 5

20โˆ’15=520 - 15 = 5

25โˆ’20=525 - 20 = 5

30โˆ’25=530 - 25 = 5

Step 2: We observe that the difference between each pair of successive numbers is 55, which is consistent throughout the sequence.

Step 3: Compare this pattern with the given choices. The choice corresponding to adding 5 consistently matches our observed pattern.

Therefore, the rule for this sequence is to add 5 to each preceding number to obtain the next number in the sequence. This corresponds with choice number 2: +5 +5 .

Answer

+5 +5

Exercise #4

Look at the following set of numbers and determine if there is any property, if so, what is it?

13,16,20,23 13,16,20,23

Video Solution

Step-by-Step Solution

To solve this problem, we'll check for consistent differences between the numbers, as this can indicate a property such as an arithmetic sequence.

  • Step 1: Calculate the difference between each pair of consecutive numbers.

Let's look at the differences:

16โˆ’13=3 16 - 13 = 3

20โˆ’16=4 20 - 16 = 4

23โˆ’20=3 23 - 20 = 3

  • Step 2: Analyze the differences.

The differences between consecutive numbers are not consistent: 3,4, 3, 4, and 3 3 .

This irregularity shows that there is no single property like a consistent common difference, which would indicate an arithmetic sequence.

Therefore, no particular property applies to this set as a whole based on the differences analyzed.

The correct choice is that a regular property does not exist among these numbers.

Therefore, the solution to the problem is: Does not exist.

Answer

Does not exist

Exercise #5

Is there a term-to-term rule for the sequence below?

18 , 22 , 26 , 30

Video Solution

Step-by-Step Solution

To solve this problem, we'll check the differences between consecutive terms:

  • The difference between 2222 and 1818 is 22โˆ’18=422 - 18 = 4.
  • The difference between 2626 and 2222 is 26โˆ’22=426 - 22 = 4.
  • The difference between 3030 and 2626 is 30โˆ’26=430 - 26 = 4.

All differences between consecutive terms are 44, indicating a constant increment. Thus, the sequence is arithmetic with a common difference of 44.

The term-to-term rule is: to get the next term, add 44 to the current term.

Therefore, yes, there is a term-to-term rule for this sequence, given by adding 44 to the previous term.

Answer

Yes

Start practice