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

Distinguish arithmetic vs geometric series: linear vs exponential growth patterns. Learn sum formulas, calculations, and choose the right approach.

---

## Arithmetic Series

**Basic concept:**

An arithmetic series is the **sum** of the terms of an **arithmetic sequence**. Remember, an arithmetic sequence is one that has a constant **difference (common difference)** between its terms ($$b$$).

Visible text: An arithmetic series is the **sum** of the terms of an **arithmetic sequence**. Remember, an arithmetic sequence is one that has a constant **difference (common difference)** between its terms ().

So, we are summing terms with the pattern: $$a, a+b, a+2b, a+3b, \dots$$.

Visible text: So, we are summing terms with the pattern: .

The sum of the first $$n$$ terms ($$S_n$$) of an arithmetic series can be calculated using the formula:

Visible text: The sum of the first terms () of an arithmetic series can be calculated using the formula:

```math
S_n = \frac{n}{2}(2a + (n-1)b)
```

or

```math
S_n = \frac{n}{2}(a + U_n)
```

Where $$a$$ is the first term and $$U_n$$ is the $$n$$-th term.

Visible text: Where is the first term and is the -th term.

Imagine you are stacking bricks. The first layer has $$1$$ brick, the second layer has $$3$$ bricks, the third layer has $$5$$ bricks, and so on (common difference $$= 2$$). An arithmetic series represents the **total** number of bricks needed to make a stack $$n$$ layers high.

Visible text: Imagine you are stacking bricks. The first layer has brick, the second layer has bricks, the third layer has bricks, and so on (common difference ). An arithmetic series represents the **total** number of bricks needed to make a stack layers high.

## Geometric Series

**Basic concept:**

A geometric series is the **sum** of the terms of a **geometric sequence**. Remember, a geometric sequence is one that has a constant **ratio (common ratio)** between its terms ($$r$$).

Visible text: A geometric series is the **sum** of the terms of a **geometric sequence**. Remember, a geometric sequence is one that has a constant **ratio (common ratio)** between its terms ().

So, we are summing terms with the pattern: $$a, ar, ar^2, ar^3, \dots$$.

Visible text: So, we are summing terms with the pattern: .

The sum of the first $$n$$ terms ($$S_n$$) of a geometric series can be calculated using the formula:

Visible text: The sum of the first terms () of a geometric series can be calculated using the formula:

```math
S_n = \frac{a(r^n - 1)}{r-1}
```

for $$r \neq 1$$, where $$a$$ is the first term and $$r$$ is the ratio.

Visible text: for , where is the first term and is the ratio.

Going back to the example of bacteria dividing ($$1$$ becomes $$2$$, $$2$$ becomes $$4$$, etc., ratio $$= 2$$). A geometric series is the **total** number of bacteria after $$n$$ divisions. For example, the total number of bacteria after $$3$$ divisions is $$1 + 2 + 4 = 7$$.

Visible text: Going back to the example of bacteria dividing ( becomes , becomes , etc., ratio ). A geometric series is the **total** number of bacteria after divisions. For example, the total number of bacteria after divisions is .

## Key Differences

| Feature                                   | Arithmetic Series                                                                  | Geometric Series                                                            |
| ----------------------------------------- | ---------------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
| **Basis**                                 | Sum of terms in an arithmetic sequence (common difference $$b$$) | Sum of terms in a geometric sequence (common ratio $$r$$) |
| **Sum Formula $$S_n$$** | $$\frac{n}{2}(2a + (n-1)b)$$                                     | $$\frac{a(r^n - 1)}{r-1}$$                                |
| **Pattern**                               | Constant addition/subtraction                                                      | Constant multiplication/division                                            |

Visible text: | Feature | Arithmetic Series | Geometric Series |
| ----------------------------------------- | ---------------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
| **Basis** | Sum of terms in an arithmetic sequence (common difference ) | Sum of terms in a geometric sequence (common ratio ) |
| **Sum Formula ** | | |
| **Pattern** | Constant addition/subtraction | Constant multiplication/division |