# Nakafa Learning Content

> For AI agents: use [llms.txt](https://nakafa.com/llms.txt) for the site index. Markdown versions are available by appending `.md` to content URLs or sending `Accept: text/markdown`.

URL: https://nakafa.com/en/subjects/mathematics/sequence-series/sequence-concept
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/material/lesson/mathematics/sequence-series/sequence-concept/en.mdx

Explore sequence fundamentals with interactive table-chair patterns. Learn arithmetic, geometric types, and solve real-world pattern problems one step at a time.

---

## Understanding Number Sequences

A number sequence is an arrangement of numbers that follows a specific pattern. Each number in the sequence is called a term. Note the following notations:

- The $$1$$st term is denoted by $$U_1$$
- The $$2$$nd term is denoted by $$U_2$$
- The $$3$$rd term is denoted by $$U_3$$
- The general term is denoted by $$U_n$$

Visible text: - The st term is denoted by 
- The nd term is denoted by 
- The rd term is denoted by 
- The general term is denoted by

By understanding the pattern in a sequence, we can determine the subsequent terms and even find the general term using a formula.

## Number Patterns in Everyday Life

### Tables and Chairs Exploration

Let's observe an example of a number pattern formed by the arrangement of tables and chairs:

Component: TableChairsAnimation
Props:
- labels: {
title: "Table and Chair Sequence Pattern",
table: "Table",
chair: "Chair",
reset: "Reset",
pause: "Pause",
play: "Play",
setSpeed: "Set speed to",
setTableCount: "Set table count to",
}

When there is $$1$$ square table, $$4$$ chairs can be placed around it.

Visible text: When there is square table, chairs can be placed around it.

If $$2 \text{ tables}$$ are joined together, then $$6$$ chairs can be placed around the combined tables.

Visible text: If are joined together, then chairs can be placed around the combined tables.

We can create a table to observe the pattern:

| Number of tables | $$1$$ | $$2$$ | $$3$$ | $$4$$ | $$5$$ | $$6$$ |
| ---------------- | --- | --- | --- | --- | --- | --- |
| Number of chairs | $$4$$ | $$6$$ | $$8$$ | $$10$$ | $$12$$ | $$14$$ |

Visible text: | Number of tables | | | | | | |
| ---------------- | --- | --- | --- | --- | --- | --- |
| Number of chairs | | | | | | |

From the table above, we can observe that:

- When there is $$1$$ table, there are $$4$$ chairs
- When there are $$2 \text{ tables}$$, there are $$6$$ chairs
- When there are $$3 \text{ tables}$$, there are $$8$$ chairs

Visible text: - When there is table, there are chairs
- When there are , there are chairs
- When there are , there are chairs

When observed, each addition of $$1$$ table results in an addition of $$2$$ chairs. This forms a number pattern with the formula:

Visible text: When observed, each addition of table results in an addition of chairs. This forms a number pattern with the formula:

```math
U_n = 2n + 2
```

Where:

- $$U_n$$ is the number of chairs
- $$n$$ is the number of tables

Visible text: - is the number of chairs
- is the number of tables

## Applications of Sequence Concepts

### Determining the Number of Chairs and Tables

By understanding sequence patterns, we can answer questions such as:

**If there are $$20 \text{ people}$$ who will sit on chairs, how many tables need to be joined?**

Visible text: **If there are who will sit on chairs, how many tables need to be joined?**

We can use the formula $$U_n = 2n + 2$$ where $$U_n = 20$$, so:

Visible text: We can use the formula where , so:

Component: MathContainer
Children:

```math
20 = 2n + 2
```

```math
18 = 2n
```

```math
n = 9
```

Therefore, $$9 \text{ tables}$$ need to be joined to accommodate $$20 \text{ people}$$.

Visible text: Therefore, need to be joined to accommodate .

## Types of Sequences

Based on their patterns, number sequences can be classified into several types:

### Arithmetic Sequence

A number sequence where the difference between two consecutive terms is always constant. This difference is called the common difference ($$b$$).

Visible text: A number sequence where the difference between two consecutive terms is always constant. This difference is called the common difference ().

Example: $$2, 4, 6, 8, 10, \ldots$$ Common difference $$(b) = 2$$

Visible text: Example: Common difference

### Geometric Sequence

A number sequence where the ratio between two consecutive terms is always constant. This ratio is called the common ratio ($$r$$).

Visible text: A number sequence where the ratio between two consecutive terms is always constant. This ratio is called the common ratio ().

Example: $$2, 6, 18, 54, \ldots$$ Common ratio $$(r) = 3$$

Visible text: Example: Common ratio

### Other Sequences

Besides arithmetic and geometric sequences, there are many other types of sequences such as Fibonacci sequences, quadratic sequences, cubic sequences, and more.

Example of a Fibonacci sequence: $$0, 1, 1, 2, 3, 5, 8, 13, \ldots$$

Visible text: Example of a Fibonacci sequence:

## Finding Patterns

To determine the pattern of a sequence:

1. Observe the differences between consecutive terms
2. Check if the difference is constant (arithmetic sequence)
3. If not, check if the ratio is constant (geometric sequence)
4. If neither, check for other possible patterns

By understanding sequence concepts, we can solve various mathematical problems related to number patterns in everyday life.