# 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/integral/integral-in-economics-and-business
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/material/lesson/mathematics/integral/integral-in-economics-and-business/en.mdx

Apply integrals to real business scenarios: calculate total sales, study cost changes, analyze revenue growth, and determine consumer surplus.

---

## Application of Integrals in Economics

Integrals play an important role in analyzing various economic and business phenomena. Imagine a company manager who wants to know the total sales of a product in a certain period, or an economist analyzing national income growth. This is where integrals become a very useful tool.

In an economic context, **integrals** help us calculate the accumulation of a quantity that changes with respect to time. For example, if we have a sales rate function, then the integral of that function will give us the total sales in a certain period.

This concept is similar to calculating the area under a curve, where the horizontal axis represents time and the vertical axis represents the rate of change of an economic quantity.

## Sales Analysis Using Integrals

Let's learn how integrals can help analyze the sales of a product. Suppose a technology company launches a new smartphone, and the analysis team finds that sales follow a certain pattern.

After conducting market research, they found that the sales rate per month can be modeled with the function $$f(t) = 2000\sqrt{t + 1} + 800 \text{ units}$$ per month, where $$t$$ is the time in months after launch.

Visible text: After conducting market research, they found that the sales rate per month can be modeled with the function per month, where is the time in months after launch.

Now, here's the question: what is the **total sales** in the first $$3 \text{ months}$$? This is where integrals play a role. We need to integrate the sales rate function:

Visible text: Now, here's the question: what is the **total sales** in the first ? This is where integrals play a role. We need to integrate the sales rate function:

```math
S = \int_{0}^{3} (2000\sqrt{t + 1} + 800) \, dt
```

Let's solve this by separating the integral first:

Component: MathContainer
Children:

```math
S = \int_{0}^{3} 2000\sqrt{t + 1} \, dt + \int_{0}^{3} 800 \, dt
```

```math
S = 2000 \int_{0}^{3} (t + 1)^{1/2} \, dt + 800t \Big|_{0}^{3}
```

For integrals containing square roots, we can use substitution. Let $$u = t + 1$$, then $$du = dt$$. Don't forget to change the integration limits too!

Visible text: For integrals containing square roots, we can use substitution. Let , then . Don't forget to change the integration limits too!

Component: MathContainer
Children:

```math
S = 2000 \int_{1}^{4} u^{1/2} \, du + 2400
```

```math
S = 2000 \left[\frac{2}{3}u^{3/2}\right]_{1}^{4} + 2400
```

```math
S = \frac{4000}{3}(8 - 1) + 2400 = \frac{28000}{3} + 2400
```

The final result is $$S = 9333 + 2400 = 11733$$ smartphone units sold in the first $$3 \text{ months}$$.

Visible text: The final result is smartphone units sold in the first .

## Profit and Revenue Analysis

Now let's look at a different example. Suppose a technology startup has a revenue growth rate that follows an exponential pattern <InlineMath math="R'(t) = 5000e^{0.1t}" /> thousand dollars per month, where $$t$$ is the time in months.

Visible text: Now let's look at a different example. Suppose a technology startup has a revenue growth rate that follows an exponential pattern <InlineMath math="R'(t) = 5000e^{0.1t}" /> thousand dollars per month, where is the time in months.

To calculate the **total revenue increase** in the first $$6 \text{ months}$$, we integrate the growth rate function:

Visible text: To calculate the **total revenue increase** in the first , we integrate the growth rate function:

Component: MathContainer
Children:

```math
R = \int_{0}^{6} 5000e^{0.1t} \, dt
```

```math
R = 5000 \int_{0}^{6} e^{0.1t} \, dt
```

```math
R = 5000 \left[\frac{e^{0.1t}}{0.1}\right]_{0}^{6}
```

```math
R = 50000(e^{0.6} - 1)
```

With $$e^{0.6} \approx 1.822$$, the total revenue increase is approximately $$50000 \times 0.822 = 41100$$ thousand dollars or $$41.1 \text{ million}$$ dollars.

Visible text: With , the total revenue increase is approximately thousand dollars or dollars.

## Total Production Cost

In business, companies often need to estimate production costs. Suppose the marginal cost to produce a good is $$MC(x) = 0.3x^2 - 12x + 200$$ thousand dollars per unit, where $$x$$ is the number of units produced.

Visible text: In business, companies often need to estimate production costs. Suppose the marginal cost to produce a good is thousand dollars per unit, where is the number of units produced.

Now, if the company wants to know the **total variable cost** to produce the first $$20 \text{ units}$$, they simply integrate the marginal cost function:

Visible text: Now, if the company wants to know the **total variable cost** to produce the first , they simply integrate the marginal cost function:

```math
VC = \int_{0}^{20} (0.3x^2 - 12x + 200) \, dx
```

After we integrate and evaluate, we obtain:

Component: MathContainer
Children:

```math
VC = \left[0.1x^3 - 6x^2 + 200x\right]_{0}^{20}
```

```math
VC = 800 - 2400 + 4000 = 2400
```

So, the total variable cost to produce $$20 \text{ units}$$ is $$2.4 \text{ million}$$ dollars.

Visible text: So, the total variable cost to produce is dollars.

> In economic applications, integrals help transform marginal concepts (rates of change) into total concepts (accumulation). This is very useful for making the right business decisions.

## Consumer Surplus Analysis

The concept of consumer surplus can also be calculated using integrals. Imagine there's a market with demand function $$P = 100 - 0.5Q$$ and the equilibrium price is $$60 \text{ dollars per unit}$$.

Visible text: The concept of consumer surplus can also be calculated using integrals. Imagine there's a market with demand function and the equilibrium price is .

Consumer surplus shows the total benefit obtained by consumers above the price they pay. We can calculate it with:

```math
CS = \int_{0}^{80} (100 - 0.5Q - 60) \, dQ = \int_{0}^{80} (40 - 0.5Q) \, dQ
```

After evaluation:

Component: MathContainer
Children:

```math
CS = \left[40Q - 0.25Q^2\right]_{0}^{80}
```

```math
CS = 3200 - 1600 = 1600
```

A consumer surplus of $$1600 \text{ units}$$ shows the total benefit obtained by consumers above the equilibrium price.

Visible text: A consumer surplus of shows the total benefit obtained by consumers above the equilibrium price.

## Exercises

1. A company has a sales rate of $$f(t) = 1000 + 500t \text{ units}$$ per month. Calculate the total sales in the first $$6 \text{ months}$$!

2. If the marginal cost of a product is $$MC(x) = 2x + 50$$ thousand dollars per unit, what is the total variable cost to produce $$25 \text{ units}$$?

3. The investment growth rate function is <InlineMath math="I'(t) = 2000e^{0.05t}\text{ million}" /> dollars per year. Calculate the total investment growth in $$4 \text{ years}$$!

Visible text: 1. A company has a sales rate of per month. Calculate the total sales in the first !

2. If the marginal cost of a product is thousand dollars per unit, what is the total variable cost to produce ?

3. The investment growth rate function is <InlineMath math="I'(t) = 2000e^{0.05t}\text{ million}" /> dollars per year. Calculate the total investment growth in !

### Answer Key

1. **Calculating total sales**

   Since we have the sales rate function, just integrate it:

   
   
   ```math
   S = \int_{0}^{6} (1000 + 500t) \, dt
   ```

   The result is:

   <MathContainer>
   
   
   ```math
   S = \left[1000t + 250t^2\right]_{0}^{6}
   ```

   
   
   ```math
   S = 6000 + 9000 = 15000
   ```

   </MathContainer>

   Total sales in $$6 \text{ months}$$ is $$15{,}000 \text{ units}$$.

2. **Calculating variable cost**

   Integrate the marginal cost function:

   
   
   ```math
   VC = \int_{0}^{25} (2x + 50) \, dx
   ```

   After evaluation:

   <MathContainer>
   
   
   ```math
   VC = \left[x^2 + 50x\right]_{0}^{25}
   ```

   
   
   ```math
   VC = 625 + 1250 = 1875
   ```

   </MathContainer>

   Total variable cost is $$1{,}875$$ thousand dollars or $$1.875 \text{ million}$$ dollars.

3. **Calculating investment growth**

   For exponential functions, we integrate:

   
   
   ```math
   I = \int_{0}^{4} 2000e^{0.05t} \, dt
   ```

   The result is:

   <MathContainer>
   
   
   ```math
   I = 2000 \left[\frac{e^{0.05t}}{0.05}\right]_{0}^{4}
   ```

   
   
   ```math
   I = 40000(e^{0.2} - 1) \approx 40000(0.221) = 8856
   ```

   </MathContainer>

   Total investment growth in $$4 \text{ years}$$ is approximately $$8.86 \text{ billion dollars}$$.

Visible text: 1. **Calculating total sales**

 Since we have the sales rate function, just integrate it:

 
 

 The result is:

 <MathContainer>
 
 

 
 

 </MathContainer>

 Total sales in is .

2. **Calculating variable cost**

 Integrate the marginal cost function:

 
 

 After evaluation:

 <MathContainer>
 
 

 
 

 </MathContainer>

 Total variable cost is thousand dollars or dollars.

3. **Calculating investment growth**

 For exponential functions, we integrate:

 
 

 The result is:

 <MathContainer>
 
 

 
 

 </MathContainer>

 Total investment growth in is approximately .