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

Explore exponential functions through interactive virus spread visualization. Compare exponential vs linear growth with real-time charts.

---

## Introduction to Exponential Functions

Exponential functions are mathematical functions that can describe extremely rapid growth or decay. Let's explore the properties of exponential functions through a real-world example.

## Virus Spread

Imagine the following scenario: Someone carries a virus and infects $$3$$ other people. Then, each of those people infects $$3$$ more people in the next phase.

Visible text: Imagine the following scenario: Someone carries a virus and infects other people. Then, each of those people infects more people in the next phase.

### Spread Pattern

If we track the number of infected people in each phase:

- **Phase** $$1$$: $$3 = 3^1 \text{ people}$$ infected
- **Phase** $$2$$: $$9 = 3^2 \text{ people}$$ infected
- **Phase** $$3$$: $$27 = 3^3 \text{ people}$$ infected
- **Phase** $$4$$: $$81 = 3^4 \text{ people}$$ infected
- **Phase** $$5$$: $$243 = 3^5 \text{ people}$$ infected

Visible text: - **Phase** : infected
- **Phase** : infected
- **Phase** : infected
- **Phase** : infected
- **Phase** : infected

### Mathematical Pattern

From the data above, a clear pattern emerges: the number of people infected in phase $$x$$ is $$3^x$$.

Visible text: From the data above, a clear pattern emerges: the number of people infected in phase is .

If $$f(x)$$ represents the number of people infected in phase $$x$$, then:

Visible text: If represents the number of people infected in phase , then:

```math
f(x) = 3^x
```

This is an example of an exponential function.

### Spread Visualization

1. **Exponential Graph**: $$f(x) = 3^x$$
2. **Linear Graph**: $$f(x) = 3x$$
3. **Logarithmic Graph**: $$f(x) = \log(x+1) \cdot 20$$

Visible text: 1. **Exponential Graph**: 
2. **Linear Graph**: 
3. **Logarithmic Graph**:

Using the equations above, we can visualize the virus spread through the following graph:

Component: VirusChart
Props:
- labels: {
title: "Virus Spread",
description: "Number of people infected in each phase.",
exponential: "Exponential Function",
linear: "Linear Function",
logarithmic: "Logarithmic Function",
yLabel: "Number of people infected",
caption:
"Virus spread grows exponentially, accelerating rapidly after the initial phases.",
phase: "Phase",
}

### Analysis Questions

1. How many people will be infected in phase $$20$$?

   
   
   ```math
   f(20) = 3^{20} = 3{,}486{,}784{,}401
   ```

2. Which function best represents the virus spread?

   Of the three graphs shown, the **exponential graph** most accurately depicts this virus spread. This graph shows slow growth initially but becomes very rapid as phases progress.

Visible text: 1. How many people will be infected in phase ?

 
 

2. Which function best represents the virus spread?

 Of the three graphs shown, the **exponential graph** most accurately depicts this virus spread. This graph shows slow growth initially but becomes very rapid as phases progress.

## Properties of Exponential Functions

From the exploration above, we can conclude several properties of the exponential function $$f(x) = a^x$$ (where $$a > 0$$ and $$a \neq 1$$):

Visible text: From the exploration above, we can conclude several properties of the exponential function (where and ):

1. **Rapid Growth/Decay**: Function values increase/decrease very rapidly.
2. **Domain and Range**: Domain is all real numbers, range is all positive numbers.
3. **Intercept Point**: Always passes through point $$(0, 1)$$ because $$a^0 = 1$$.
4. **Graph Properties**:
   - If $$a > 1$$, the function increases (as in the virus spread case with $$a = 3$$)
   - If $$0 < a < 1$$, the function decreases

Visible text: 1. **Rapid Growth/Decay**: Function values increase/decrease very rapidly.
2. **Domain and Range**: Domain is all real numbers, range is all positive numbers.
3. **Intercept Point**: Always passes through point because .
4. **Graph Properties**:
 - If , the function increases (as in the virus spread case with )
 - If , the function decreases

## Applications of Exponential Functions

Exponential functions are used in various fields:

- Population growth
- Compound interest in economics
- Radioactive decay
- Disease spread (as in the example above)

Understanding exponential functions helps us analyze and predict phenomena that exhibit rapid growth or decay.