# 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/series-concept
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/material/lesson/mathematics/sequence-series/series-concept/en.mdx

Understand series as sequential sums through handshake examples and see how adding sequence terms creates arithmetic and geometric patterns.

---

## Understanding Number Series

Have you ever thought about how to sum the terms of a number sequence? For example, adding $$1 + 2 + 3 + \cdots$$ and so on? Well, this is what's called a **number series**.

Visible text: Have you ever thought about how to sum the terms of a number sequence? For example, adding and so on? Well, this is what's called a **number series**.

So, a **number series** is the result of sequentially adding the terms of a number sequence. Just like sequences, there are two main types of series: **arithmetic series** (the sum of terms in an arithmetic sequence) and **geometric series** (the sum of terms in a geometric sequence). But don't worry, we'll discuss the detailed formulas later.

Now, let's look at a real-world example of the series concept through a simple exploration.

## Number of Handshakes

Imagine there are several people in a group. If each person shakes hands exactly once with every other person in the group, how many total handshakes occur?

Let's try to count:

- **If there are $$2 \text{ people}$$:** There is only $$1 \text{ handshake}$$.
- **If there are $$3 \text{ people}$$:** The first person shakes hands with $$2$$ others. The second person has already shaken hands with the first, so they only need to shake hands with the third person. The total is $$2 + 1 = 3 \text{ handshakes}$$.
- **If there are $$4 \text{ people}$$:** Following the same pattern, we get $$3 + 2 + 1 = 6 \text{ handshakes}$$.
- **If there are $$5 \text{ people}$$:** The total is $$4 + 3 + 2 + 1 = 10 \text{ handshakes}$$.

Visible text: - **If there are :** There is only .
- **If there are :** The first person shakes hands with others. The second person has already shaken hands with the first, so they only need to shake hands with the third person. The total is .
- **If there are :** Following the same pattern, we get .
- **If there are :** The total is .

Notice the pattern! The number of handshakes forms a sequential sum of natural numbers.

| Number of people present | Number of handshakes | Breakdown of handshakes       |
| :----------------------- | :------------------- | :---------------------------- |
| Two people               | $$1$$ | $$1$$ |
| Three people             | $$3$$ | $$1+2$$     |
| Four people              | $$6$$ | $$1+2+3$$   |
| Five people              | $$10$$ | $$1+2+3+4$$ |

Visible text: | Number of people present | Number of handshakes | Breakdown of handshakes |
| :----------------------- | :------------------- | :---------------------------- |
| Two people | | |
| Three people | | |
| Four people | | |
| Five people | | |

Summations like $$1+2+3+4$$ are examples of a **number series**. In this case, the series is formed from the sum of the terms of the sequence of natural numbers $$(1, 2, 3, 4, ...)$$.

Visible text: Summations like are examples of a **number series**. In this case, the series is formed from the sum of the terms of the sequence of natural numbers .

### Does This Form a Sequence?

Interesting question: does the number of handshakes itself $$(1, 3, 6, 10, ...)$$ form an arithmetic or geometric sequence? The answer is no. This sequence does not have a constant difference or ratio between its terms ($$3-1=2$$, $$6-3=3$$, $$10-6=4$$).

Visible text: Interesting question: does the number of handshakes itself form an arithmetic or geometric sequence? The answer is no. This sequence does not have a constant difference or ratio between its terms (, , ).

However, the **breakdown** of the number of handshakes ($$1$$, $$1+2$$, $$1+2+3$$, $$1+2+3+4$$) clearly represents the sum of the terms of a sequence (specifically, the sequence of natural numbers). This is the core concept of a **series**.

Visible text: However, the **breakdown** of the number of handshakes (, , , ) clearly represents the sum of the terms of a sequence (specifically, the sequence of natural numbers). This is the core concept of a **series**.

So, this handshake exploration shows how the concept of a series arises from summing the terms of a pattern or number sequence in everyday situations.