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

Simplify complex limit calculations with essential properties. Learn sum, product, quotient, power, and root rules with worked applications.

---

## Understanding Properties of Limit Function

After learning the [basic concept of limits](/en/subjects/mathematics/limit/concept-of-limit-function), we can use **limit properties** to break complex limit calculations into simpler parts.

These properties are an important foundation in calculus because they let us calculate limits without always returning to formal definitions or value tables.

## Basic Properties of Limits

### Constant Property

The simplest property is the limit of a constant function. If $$k$$ is a constant, then:

Visible text: The simplest property is the limit of a constant function. If is a constant, then:

```math
\lim_{x \to c} k = k
```

This means, the limit of a **constant** is the **constant itself**. This makes sense because the value of a constant does not change with respect to the variable $$x$$.

Visible text: This means, the limit of a **constant** is the **constant itself**. This makes sense because the value of a constant does not change with respect to the variable .

### Identity Property

For the identity function, the following holds:

```math
\lim_{x \to c} x = c
```

When $$x$$ approaches $$c$$, the value of function $$f(x) = x$$ also approaches $$c$$.

Visible text: When approaches , the value of function also approaches .

## Arithmetic Operation Properties

Suppose $$\lim_{x \to c} f(x) = L$$ and $$\lim_{x \to c} g(x) = M$$ where $$L$$ and $$M$$ are real numbers, then the following properties hold:

Visible text: Suppose and where and are real numbers, then the following properties hold:

### Addition and Subtraction Properties

The limit of the **sum** or **difference** of two functions equals the sum or difference of the **limits of each function**:

Component: MathContainer
Children:

```math
\lim_{x \to c} [f(x) + g(x)] = \lim_{x \to c} f(x) + \lim_{x \to c} g(x) = L + M
```

```math
\lim_{x \to c} [f(x) - g(x)] = \lim_{x \to c} f(x) - \lim_{x \to c} g(x) = L - M
```

> This property allows us to break complex limits into simpler parts.

### Multiplication Property

The limit of the **product** of two functions equals the product of the **limits of each function**:

```math
\lim_{x \to c} [f(x) \cdot g(x)] = \lim_{x \to c} f(x) \cdot \lim_{x \to c} g(x) = L \cdot M
```

### Multiplication by Constant Property

A **constant** can be factored out from the limit sign:

```math
\lim_{x \to c} [k \cdot f(x)] = k \cdot \lim_{x \to c} f(x) = k \cdot L
```

### Division Property

The limit of the **quotient** of two functions equals the quotient of the **limits of each function**, provided the limit of the denominator is **not zero**:

```math
\lim_{x \to c} \frac{f(x)}{g(x)} = \frac{\lim_{x \to c} f(x)}{\lim_{x \to c} g(x)} = \frac{L}{M}
```

with the condition $$M \neq 0$$.

Visible text: with the condition .

## Power and Root Properties

### Power Property

The limit of a **function raised to a power** equals the **power** of the limit of the function:

```math
\lim_{x \to c} [f(x)]^n = \left[\lim_{x \to c} f(x)\right]^n = L^n
```

where $$n$$ is a real number.

Visible text: where is a real number.

### Root Property

The limit of the **root of a function** equals the **root** of the limit of the function:

```math
\lim_{x \to c} \sqrt[n]{f(x)} = \sqrt[n]{\lim_{x \to c} f(x)} = \sqrt[n]{L}
```

**Important conditions:**

- If $$n$$ is odd: this property applies to all values of $$L$$
- If $$n$$ is even: $$L \geq 0$$ (cannot be negative because the even root of a negative number is not defined in real numbers)

Visible text: - If is odd: this property applies to all values of 
- If is even: (cannot be negative because the even root of a negative number is not defined in real numbers)

## Examples of Applying Limit Properties

### Simple Example

Calculate $$\lim_{x \to 2} (3x^2 + 5x - 1)$$.

Visible text: Calculate .

**Solution:**

Using limit properties:

Component: MathContainer
Children:

```math
\lim_{x \to 2} (3x^2 + 5x - 1) = \lim_{x \to 2} 3x^2 + \lim_{x \to 2} 5x - \lim_{x \to 2} 1
```

```math
= 3 \lim_{x \to 2} x^2 + 5 \lim_{x \to 2} x - 1
```

```math
= 3(2)^2 + 5(2) - 1 = 12 + 10 - 1 = 21
```

### Example with Fractions

Calculate $$\lim_{x \to 4} \frac{x\sqrt{x}}{x^2 + 3}$$.

Visible text: Calculate .

**Solution:**

Using division and multiplication properties:

Component: MathContainer
Children:

```math
\lim_{x \to 4} \frac{x\sqrt{x}}{x^2 + 3} = \frac{\lim_{x \to 4} x\sqrt{x}}{\lim_{x \to 4} (x^2 + 3)}
```

```math
= \frac{\lim_{x \to 4} x \cdot \lim_{x \to 4} \sqrt{x}}{\lim_{x \to 4} x^2 + \lim_{x \to 4} 3}
```

Now we substitute the value $$x = 4$$:

Visible text: Now we substitute the value :

Component: MathContainer
Children:

```math
= \frac{4 \cdot \sqrt{4}}{4^2 + 3} = \frac{4 \cdot 2}{16 + 3} = \frac{8}{19}
```

In **decimal** form: $$\frac{8}{19} \approx 0.421$$

Visible text: In **decimal** form:

### Example with Roots

Calculate $$\lim_{x \to 0} \sqrt{x^2 - 3x + 2}$$.

Visible text: Calculate .

**Solution:**

Using the root property (since $$n = 2$$ is even, we need to ensure the result inside the root is not negative):

Visible text: Using the root property (since is even, we need to ensure the result inside the root is not negative):

Component: MathContainer
Children:

```math
\lim_{x \to 0} \sqrt{x^2 - 3x + 2} = \sqrt{\lim_{x \to 0} (x^2 - 3x + 2)}
```

Calculate the limit inside the root first:

Component: MathContainer
Children:

```math
\lim_{x \to 0} (x^2 - 3x + 2) = 0^2 - 3(0) + 2 = 0 - 0 + 2 = 2
```

Since $$2 > 0$$, we can use the root property:

Visible text: Since , we can use the root property:

```math
= \sqrt{2} \approx 1.414
```

## Exercises

1. Calculate $$\lim_{x \to 3} (2x^2 - 4x + 1)$$

2. Calculate $$\lim_{x \to 1} \frac{3x + 2}{x^2 + 1}$$

3. Calculate $$\lim_{x \to 4} \sqrt{x + 5}$$

4. Calculate $$\lim_{x \to 2} (x + 1)^3$$

5. Calculate $$\lim_{x \to 0} \frac{5x^2 + 3x}{2x + 1}$$

Visible text: 1. Calculate 

2. Calculate 

3. Calculate 

4. Calculate 

5. Calculate

### Answer Key

1. **Solution:**

   Using addition and multiplication by constant properties:

   <MathContainer>
   
   
   ```math
   \lim_{x \to 3} (2x^2 - 4x + 1) = 2\lim_{x \to 3} x^2 - 4\lim_{x \to 3} x + \lim_{x \to 3} 1
   ```

   </MathContainer>

   Substitute $$x = 3$$:

   <MathContainer>
   
   
   ```math
   = 2(3)^2 - 4(3) + 1 = 2(9) - 12 + 1 = 18 - 12 + 1 = 7
   ```

   </MathContainer>

2. **Solution:**

   Using the division property:

   <MathContainer>
   
   
   ```math
   \lim_{x \to 1} \frac{3x + 2}{x^2 + 1} = \frac{\lim_{x \to 1} (3x + 2)}{\lim_{x \to 1} (x^2 + 1)}
   ```

   
   
   ```math
   = \frac{3(1) + 2}{1^2 + 1} = \frac{5}{2}
   ```

   </MathContainer>

   In **decimal** form: $$\frac{5}{2} = 2.5$$

3. **Solution:**

   Using the root property:

   <MathContainer>
   
   
   ```math
   \lim_{x \to 4} \sqrt{x + 5} = \sqrt{\lim_{x \to 4} (x + 5)}
   ```

   
   
   ```math
   = \sqrt{4 + 5} = \sqrt{9} = 3
   ```

   </MathContainer>

4. **Solution:**

   Using the power property:

   <MathContainer>
   
   
   ```math
   \lim_{x \to 2} (x + 1)^3 = \left[\lim_{x \to 2} (x + 1)\right]^3
   ```

   
   
   ```math
   = (2 + 1)^3 = 3^3 = 27
   ```

   </MathContainer>

5. **Solution:**

   Using the division property:

   <MathContainer>
   
   
   ```math
   \lim_{x \to 0} \frac{5x^2 + 3x}{2x + 1} = \frac{\lim_{x \to 0} (5x^2 + 3x)}{\lim_{x \to 0} (2x + 1)}
   ```

   
   
   ```math
   = \frac{5(0)^2 + 3(0)}{2(0) + 1} = \frac{0}{1} = 0
   ```

   </MathContainer>

Visible text: 1. **Solution:**

 Using addition and multiplication by constant properties:

 <MathContainer>
 
 

 </MathContainer>

 Substitute :

 <MathContainer>
 
 

 </MathContainer>

2. **Solution:**

 Using the division property:

 <MathContainer>
 
 

 
 

 </MathContainer>

 In **decimal** form: 

3. **Solution:**

 Using the root property:

 <MathContainer>
 
 

 
 

 </MathContainer>

4. **Solution:**

 Using the power property:

 <MathContainer>
 
 

 
 

 </MathContainer>

5. **Solution:**

 Using the division property:

 <MathContainer>
 
 

 
 

 </MathContainer>