# Nakafa Framework: LLM
URL: /en/subject/high-school/11/mathematics/function-modeling/exponential-function
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/11/mathematics/function-modeling/exponential-function/en.mdx
Output docs content for large language models.
---
import { getColor } from "@repo/design-system/lib/color";
import { LineEquation } from "@repo/design-system/components/contents/line-equation";
export const metadata = {
  title: "Exponential Function",
  description: "Explore exponential growth and decay with real-world applications: population dynamics, radioactive decay, and compound interest. Solve exponential equations.",
  authors: [{ name: "Nabil Akbarazzima Fatih" }],
  date: "05/18/2025",
  subject: "Functions and Their Modeling",
};
## Understanding Exponential Functions
An exponential function is a mathematical function that has a variable as the exponent of a constant number. The general form of an exponential function is  with , , and .
**Components of exponential functions:**
In the function :
-  is the multiplier constant that determines the initial
  value of the function
-  is the exponential base that determines the rate of growth
  or decay
-  is the independent variable (exponent)
## Characteristics of Exponential Functions
Exponential functions have several special properties that distinguish them from other functions:
### Basic Properties
  
  
  
### Types of Exponential Functions
**Exponential Growth Function** ():
- Function values increase as  increases
- Graph rises from left to right
- Example: 
**Exponential Decay Function** ():
- Function values decrease as  increases
- Graph falls from left to right
- Example: 
## Graphs of Exponential Functions
The following is a visualization of various exponential functions:
Comparison of Exponential Functions>}
  description={
    <>
      The graph shows the growth function  and
      decay function .
    >
  }
  data={[
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const x = i * 0.2 - 2;
        return { x, y: Math.pow(2, x), z: 0 };
      }),
      color: getColor("PURPLE"),
      showPoints: false,
      labels: [{ text: "f(x) = 2^x", at: 15, offset: [2, -0.5, 0] }],
    },
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const x = i * 0.2 - 2;
        return { x, y: Math.pow(0.5, x), z: 0 };
      }),
      color: getColor("ORANGE"),
      showPoints: false,
      labels: [{ text: "g(x) = (0.5)^x", at: 5, offset: [-2, -0.5, 0] }],
    },
  ]}
  cameraPosition={[0, 0, 10]}
  showZAxis={false}
/>
Comparison of function values  and :
|                                     |    |   |    |    |     |      |
| ------------------------------------ | ---- | --- | --- | --- | ---- | ----- |
|      |  |  |    |    |     |      |
|  |     |    |    |  |  |  |
## Transformations of Exponential Functions
Exponential functions can be transformed in various ways:
### Vertical Translation
The function  shifts the graph upward (if ) or downward (if ).
Vertical Translation>}
  description={
    <>
      Comparison of  with{" "}
      .
    >
  }
  data={[
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const x = i * 0.2 - 2;
        return { x, y: Math.pow(2, x), z: 0 };
      }),
      color: getColor("CYAN"),
      showPoints: false,
      labels: [{ text: "f(x) = 2^x", at: 15, offset: [1.5, -0.5, 0] }],
    },
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const x = i * 0.2 - 2;
        return { x, y: Math.pow(2, x) + 2, z: 0 };
      }),
      color: getColor("PINK"),
      showPoints: false,
      labels: [{ text: "g(x) = 2^x + 2", at: 15, offset: [0, 0.5, 0] }],
    },
  ]}
  cameraPosition={[8, 5, 8]}
  showZAxis={false}
/>
### Horizontal Translation
The function  shifts the graph to the right (if ) or to the left (if ).
## Applications of Exponential Functions
Exponential functions are widely used in daily life:
### Population Growth
Living organism populations often follow exponential growth patterns. If the initial population is  and the growth rate is  per time period, then:
**Example:** Bacterial population that reproduces every hour at a rate of 20%:
- Initial population: 1000 bacteria
- Growth rate: 
- Function: 
### Bacterial Growth Table
| Time (hours) | 0    | 1    | 2    | 3    | 4    | 5    |
| ------------ | ---- | ---- | ---- | ---- | ---- | ---- |
| Population   | 1000 | 1200 | 1440 | 1728 | 2074 | 2488 |
### Radioactive Decay
Radioactive substances decay following exponential functions. If the initial mass is  and the half-life is , then:
### Compound Interest
Investments with compound interest grow exponentially. If the initial capital is , interest rate is  per year, and time is  years:
where  is the frequency of interest compounding per year.
## Exponential Equations
An exponential equation is an equation that contains a variable in the exponent. General form:
**Method 1: Equalizing Bases**
If , then 
**Example:** Solve 
  
  
  
  
**Method 2: Using Logarithms**
To solve , use logarithms:
## Exercises
1. Determine the value of  if 
2. Solve the equation 
3. A city's population is 50,000 people and grows 3% per year. What will the population be after 10 years?
4. A radioactive substance has a half-life of 5 years. If the initial mass is 100 grams, how much mass remains after 15 years?
### Answer Key
1. 
2. , so 
   , therefore 
3.  people
4.  grams