Integral as an Antiderivative

In mathematics, integration is one of the two fundamental operations of calculus, the other being differentiation. The integral as an antiderivative is the inverse process of differentiation. If we have a function $f(x)$, its antiderivative, often denoted as $F(x)$, is a function whose derivative is $f(x)$. In simpler terms, if you differentiate $F(x)$, you get back $f(x)$. This concept is crucial for solving a wide range of problems in calculus and its applications.

Understanding Differentiation and Antidifferentiation

Let's recall differentiation. When we differentiate a function, we find its rate of change. For example, if $F(x) = x^2$, its derivative is $F'(x) = 2x$.

Now, consider the reverse process: antidifferentiation. If we are given the function $f(x) = 2x$, we want to find a function $F(x)$ such that $F'(x) = 2x$. We know from differentiation that the derivative of $x^2$ is $2x$. So, $F(x) = x^2$ is an antiderivative of $2x$.

However, there's a subtlety. What if we consider the function $G(x) = x^2 + 5$? Its derivative is $G'(x) = 2x + 0 = 2x$. Similarly, for $H(x) = x^2 - 10$, its derivative is $H'(x) = 2x$. It appears that any function of the form $x^2 + C$, where $C$ is a constant, will have $2x$ as its derivative.

This leads us to the concept of the indefinite integral. The indefinite integral of a function $f(x)$, denoted by $\int f(x) \, dx$, represents the family of all antiderivatives of $f(x)$. If $F(x)$ is one antiderivative of $f(x)$, then the indefinite integral is given by:

$\int f(x) \, dx = F(x) + C$

Here, $C$ is called the constant of integration. It accounts for the fact that the derivative of any constant is zero. The term $F(x)$ is called the particular antiderivative.

Notation and Terminology

The symbol $\int$ is called the integral sign. The expression $f(x)$ is called the integrand. The $dx$ indicates that the integration is performed with respect to the variable $x$. The result of the integration, $F(x) + C$, is the general antiderivative.

Basic Integration Rules (Antiderivatives of Common Functions)

To find antiderivatives, we essentially reverse the rules of differentiation. Here are some fundamental rules:

Power Rule for Integration

If $n \neq -1$, then the antiderivative of $x^n$ is:

$\int x^n \, dx = \frac{x^{n+1}}{n+1} + C$

Example: Find the antiderivative of $x^3$. Here, $n=3$. Using the power rule: $\int x^3 \, dx = \frac{x^{3+1}}{3+1} + C = \frac{x^4}{4} + C$. Let's check: The derivative of $\frac{x^4}{4} + C$ is $\frac{1}{4}(4x^3) + 0 = x^3$, which is our original function.

Example: Find the antiderivative of $\sqrt{x}$. First, rewrite $\sqrt{x}$ as $x^{1/2}$. Here, $n = 1/2$. $\int x^{1/2} \, dx = \frac{x^{1/2+1}}{1/2+1} + C = \frac{x^{3/2}}{3/2} + C = \frac{2}{3}x^{3/2} + C$.

Integral of a Constant

The antiderivative of a constant $k$ is:

$\int k \, dx = kx + C$

Example: Find the antiderivative of 5. $\int 5 \, dx = 5x + C$. Check: The derivative of $5x + C$ is $5$.

Integral of 1/x

This is a special case of the power rule where $n = -1$.

$\int \frac{1}{x} \, dx = \ln|x| + C$

Note the absolute value. This is because the domain of $\frac{1}{x}$ includes negative values of $x$, and the natural logarithm $\ln(x)$ is only defined for positive $x$. The derivative of $\ln|x|$ is $\frac{1}{x}$ for all $x \neq 0$.

Example: Find the antiderivative of $\frac{1}{x}$. $\int \frac{1}{x} \, dx = \ln|x| + C$.

Integrals of Trigonometric Functions

These are obtained by reversing the derivatives of trigonometric functions:

  • $\int \cos(x) \, dx = \sin(x) + C$
  • $\int \sin(x) \, dx = -\cos(x) + C$
  • $\int \sec^2(x) \, dx = \tan(x) + C$
  • $\int \csc^2(x) \, dx = -\cot(x) + C$
  • $\int \sec(x)\tan(x) \, dx = \sec(x) + C$
  • $\int \csc(x)\cot(x) \, dx = -\csc(x) + C$

Example: Find the antiderivative of $\sin(x)$. $\int \sin(x) \, dx = -\cos(x) + C$. Check: The derivative of $-\cos(x) + C$ is $- (-\sin(x)) + 0 = \sin(x)$.

Integrals of Exponential and Logarithmic Functions

  • $\int e^x \, dx = e^x + C$
  • $\int a^x \, dx = \frac{a^x}{\ln(a)} + C$ (where $a > 0$ and $a \neq 1$)

Example: Find the antiderivative of $2^x$. Here, $a=2$. $\int 2^x \, dx = \frac{2^x}{\ln(2)} + C$. Check: The derivative of $\frac{2^x}{\ln(2)} + C$ is $\frac{1}{\ln(2)} \cdot (\ln(2) \cdot 2^x) + 0 = 2^x$.

Integrals of Inverse Trigonometric Functions

  • $\int \frac{1}{\sqrt{1-x^2}} \, dx = \sin^{-1}(x) + C$
  • $\int \frac{1}{1+x^2} \, dx = \tan^{-1}(x) + C$
  • $\int \frac{1}{|x|\sqrt{x^2-1}} \, dx = \sec^{-1}(x) + C$

Properties of Indefinite Integrals

Indefinite integration follows certain properties that make it easier to integrate complex functions. These properties are direct consequences of the properties of differentiation.

Linearity Property

The integral of a sum of functions is the sum of their integrals, and the integral of a constant times a function is the constant times the integral of the function.

If $f(x)$ and $g(x)$ are integrable functions and $k$ is a constant, then:

  • $\int [f(x) + g(x)] \, dx = \int f(x) \, dx + \int g(x) \, dx$
  • $\int [f(x) - g(x)] \, dx = \int f(x) \, dx - \int g(x) \, dx$
  • $\int k f(x) \, dx = k \int f(x) \, dx$

These properties can be combined as:

$\int [k_1 f(x) \pm k_2 g(x)] \, dx = k_1 \int f(x) \, dx \pm k_2 \int g(x) \, dx$

Example: Find $\int (3x^2 + 4x) \, dx$. Using the linearity property: $\int (3x^2 + 4x) \, dx = \int 3x^2 \, dx + \int 4x \, dx$ $= 3 \int x^2 \, dx + 4 \int x \, dx$ Now, apply the power rule: $\int x^2 \, dx = \frac{x^3}{3} + C_1$ and $\int x \, dx = \frac{x^2}{2} + C_2$. $= 3 \left(\frac{x^3}{3}\right) + 4 \left(\frac{x^2}{2}\right) + C$ (where $C = 3C_1 + 4C_2$, combining all constants) $= x^3 + 2x^2 + C$.

Example: Find $\int (5\cos(x) - 2e^x) \, dx$. $= 5 \int \cos(x) \, dx - 2 \int e^x \, dx$ $= 5 (\sin(x)) - 2 (e^x) + C$ $= 5\sin(x) - 2e^x + C$.

Integration by Substitution (Change of Variable)

This technique is used when the integrand is a composite function and its derivative (or a constant multiple of it) is also present. It's the reverse of the chain rule in differentiation.

The Rule: If we have an integral of the form $\int f(g(x)) g'(x) \, dx$, we can make a substitution. Let $u = g(x)$. Then, differentiating with respect to $x$, we get $\frac{du}{dx} = g'(x)$, which implies $du = g'(x) \, dx$. Substituting these into the integral, we get:

$\int f(u) \, du$

This new integral is usually simpler to evaluate. After finding the integral in terms of $u$, we substitute back $u = g(x)$ to get the result in terms of the original variable $x$.

Example: Find $\int 2x(x^2 + 1)^3 \, dx$. Notice that the derivative of $x^2 + 1$ is $2x$, which is present in the integrand. Let $u = x^2 + 1$. Then, $du = 2x \, dx$. Substitute into the integral: $\int (u)^3 \, du$ Now, use the power rule for integration: $= \frac{u^{3+1}}{3+1} + C = \frac{u^4}{4} + C$. Finally, substitute back $u = x^2 + 1$: $= \frac{(x^2 + 1)^4}{4} + C$.

Example: Find $\int \cos(3x) \, dx$. Let $u = 3x$. Then, $du = 3 \, dx$, which means $dx = \frac{1}{3} \, du$. Substitute into the integral: $\int \cos(u) \cdot \frac{1}{3} \, du = \frac{1}{3} \int \cos(u) \, du$. Integrate with respect to $u$: $= \frac{1}{3} (\sin(u)) + C$. Substitute back $u = 3x$: $= \frac{1}{3} \sin(3x) + C$.

Example: Find $\int \frac{x}{x^2+1} \, dx$. Let $u = x^2 + 1$. Then, $du = 2x \, dx$. This means $x \, dx = \frac{1}{2} \, du$. Substitute into the integral: $\int \frac{1}{u} \cdot \frac{1}{2} \, du = \frac{1}{2} \int \frac{1}{u} \, du$. Integrate with respect to $u$: $= \frac{1}{2} \ln|u| + C$. Substitute back $u = x^2 + 1$. Since $x^2+1$ is always positive, $|x^2+1| = x^2+1$. $= \frac{1}{2} \ln(x^2 + 1) + C$.

Memory Trick for Substitution: Look for a function inside another function (composite function). If the derivative of the inner function is also present (or can be made present by multiplying by a constant), substitution is likely the method. Always remember to substitute back to the original variable.

Integration by Parts

This technique is used for integrating products of functions. It is derived from the product rule for differentiation.

Recall the product rule for differentiation: $\frac{d}{dx}[u(x)v(x)] = u'(x)v(x) + u(x)v'(x)$. Integrating both sides with respect to $x$: $\int \frac{d}{dx}[u(x)v(x)] \, dx = \int [u'(x)v(x) + u(x)v'(x)] \, dx$ $u(x)v(x) = \int u'(x)v(x) \, dx + \int u(x)v'(x) \, dx$ Rearranging the terms to isolate one of the integrals: $\int u(x)v'(x) \, dx = u(x)v(x) - \int u'(x)v(x) \, dx$

This is the formula for integration by parts. It is often written in a simpler form by letting $u = u(x)$ and $v = v(x)$. Then $du = u'(x) \, dx$ and $dv = v'(x) \, dx$. The formula becomes:

$\int u \, dv = uv - \int v \, du$

The key is to choose $u$ and $dv$ appropriately so that $\int v \, du$ is easier to integrate than the original integral $\int u \, dv$.

Choosing u and dv (The LIATE Rule)

A common mnemonic to help choose $u$ is LIATE, which stands for:

  • L - Logarithmic functions (e.g., $\ln(x)$)
  • I - Inverse trigonometric functions (e.g., $\tan^{-1}(x)$)
  • A - Algebraic functions (e.g., $x^2$, $3x+1$)
  • T - Trigonometric functions (e.g., $\sin(x)$, $\cos(x)$)
  • E - Exponential functions (e.g., $e^x$, $2^x$)

The function that appears first in this list should generally be chosen as $u$. The rest of the integrand will be $dv$.

Example: Find $\int x \cos(x) \, dx$. According to LIATE, $x$ is algebraic (A) and $\cos(x)$ is trigonometric (T). 'A' comes before 'T', so we choose: Let $u = x$ Let $dv = \cos(x) \, dx$ Now, find $du$ and $v$: $du = dx$ $v = \int \cos(x) \, dx = \sin(x)$ Apply the integration by parts formula: $\int u \, dv = uv - \int v \, du$ $\int x \cos(x) \, dx = x \sin(x) - \int \sin(x) \, dx$ Now, integrate $\int \sin(x) \, dx$: $= x \sin(x) - (-\cos(x)) + C$ $= x \sin(x) + \cos(x) + C$.

Example: Find $\int \ln(x) \, dx$. Here, the integrand is just $\ln(x)$. We can treat this as a product of $\ln(x)$ and $1$. According to LIATE, $\ln(x)$ is logarithmic (L) and $1$ is algebraic (A). 'L' comes before 'A', so we choose: Let $u = \ln(x)$ Let $dv = 1 \, dx = dx$ Find $du$ and $v$: $du = \frac{1}{x} \, dx$ $v = \int 1 \, dx = x$ Apply the formula: $\int u \, dv = uv - \int v \, du$ $\int \ln(x) \, dx = \ln(x) \cdot x - \int x \cdot \frac{1}{x} \, dx$ $= x \ln(x) - \int 1 \, dx$ $= x \ln(x) - x + C$.

Example: Find $\int x^2 e^x \, dx$. LIATE: $x^2$ is Algebraic (A), $e^x$ is Exponential (E). A comes before E. Let $u = x^2$, $dv = e^x \, dx$. Then $du = 2x \, dx$, $v = e^x$. $\int x^2 e^x \, dx = x^2 e^x - \int e^x (2x) \, dx = x^2 e^x - 2 \int x e^x \, dx$. The integral $\int x e^x \, dx$ is simpler, but still a product. We need to apply integration by parts again for this part. For $\int x e^x \, dx$: Let $u_1 = x$, $dv_1 = e^x \, dx$. Then $du_1 = dx$, $v_1 = e^x$. $\int x e^x \, dx = x e^x - \int e^x \, dx = x e^x - e^x$. Now substitute this back into the main equation: $\int x^2 e^x \, dx = x^2 e^x - 2 (x e^x - e^x) + C$ $= x^2 e^x - 2x e^x + 2e^x + C$ $= e^x (x^2 - 2x + 2) + C$.

Integration by Parts Tip: If the first choice of $u$ and $dv$ doesn't simplify the integral, or if the resulting integral $\int v \, du$ is more complex, try swapping the choice of $u$ and $dv$ (if applicable). For integrals requiring repeated application, the LIATE rule is particularly helpful.

The Fundamental Theorem of Calculus (Part 1 and Part 2)

The Fundamental Theorem of Calculus establishes a profound link between differentiation and integration. It essentially states that integration and differentiation are inverse operations.

Part 1: The Derivative of an Integral

If $f$ is a continuous function on an interval $[a, b]$, then the function $G(x)$ defined by:

$G(x) = \int_a^x f(t) \, dt$

is continuous on $[a, b]$, differentiable on $(a, b)$, and its derivative is $f(x)$. That is:

$G'(x) = \frac{d}{dx} \left( \int_a^x f(t) \, dt \right) = f(x)$

This means that the process of integrating a function and then differentiating the result brings you back to the original function.

Example: Find the derivative of $F(x) = \int_2^x \cos(t^2) \, dt$. Here, $f(t) = \cos(t^2)$ and $a=2$. Since $f(t)$ is continuous, by the Fundamental Theorem of Calculus Part 1: $F'(x) = \frac{d}{dx} \left( \int_2^x \cos(t^2) \, dt \right) = \cos(x^2)$.

Example: Find the derivative of $H(x) = \int_x^5 \sqrt{1+t^4} \, dt$. We need the upper limit to be the variable of differentiation. We can rewrite the integral using the property $\int_a^b f(t) \, dt = -\int_b^a f(t) \, dt$. $H(x) = -\int_5^x \sqrt{1+t^4} \, dt$. Let $f(t) = \sqrt{1+t^4}$. This function is continuous. $H'(x) = \frac{d}{dx} \left( -\int_5^x \sqrt{1+t^4} \, dt \right) = - \frac{d}{dx} \left( \int_5^x \sqrt{1+t^4} \, dt \right)$. By Part 1 of the theorem: $H'(x) = - \sqrt{1+x^4}$.

Example: Find the derivative of $K(x) = \int_1^{x^3} \sin(t) \, dt$. This involves a composite function in the upper limit. Let $u = x^3$. Then $K(x) = \int_1^u \sin(t) \, dt$. Using the chain rule: $\frac{dK}{dx} = \frac{dK}{du} \cdot \frac{du}{dx}$. By Part 1 of the FTC, $\frac{dK}{du} = \frac{d}{du} \left( \int_1^u \sin(t) \, dt \right) = \sin(u)$. And $\frac{du}{dx} = \frac{d}{dx}(x^3) = 3x^2$. So, $K'(x) = \sin(u) \cdot 3x^2$. Substitute back $u = x^3$: $K'(x) = \sin(x^3) \cdot 3x^2 = 3x^2 \sin(x^3)$.

FTC Part 1 Shortcut: To find $\frac{d}{dx} \int_a^{g(x)} f(t) \, dt$, the answer is $f(g(x)) \cdot g'(x)$. If the lower limit is also a function of $x$, say $\int_{h(x)}^{g(x)} f(t) \, dt = \int_{h(x)}^{a} f(t) \, dt + \int_{a}^{g(x)} f(t) \, dt = -\int_{a}^{h(x)} f(t) \, dt + \int_{a}^{g(x)} f(t) \, dt$. Then apply the rule.

Part 2: Evaluating Definite Integrals using Antiderivatives

If $f$ is continuous on $[a, b]$ and $F$ is any antiderivative of $f$ on $[a, b]$ (meaning $F'(x) = f(x)$), then:

$\int_a^b f(x) \, dx = F(b) - F(a)$

This is the most common way to evaluate definite integrals. It states that to find the definite integral of $f(x)$ from $a$ to $b$, you find an antiderivative $F(x)$, and then evaluate it at the upper limit ($b$) and subtract its value at the lower limit ($a$). This is often written as $[F(x)]_a^b$ or $F(x) \Big|_a^b$.

Example: Evaluate $\int_1^3 x^2 \, dx$. First, find an antiderivative of $x^2$. Using the power rule, $F(x) = \frac{x^3}{3}$. Now, apply the Fundamental Theorem of Calculus Part 2: $\int_1^3 x^2 \, dx = F(3) - F(1) = \frac{3^3}{3} - \frac{1^3}{3}$ $= \frac{27}{3} - \frac{1}{3} = \frac{26}{3}$.

Example: Evaluate $\int_0^{\pi/2} \sin(x) \, dx$. An antiderivative of $\sin(x)$ is $F(x) = -\cos(x)$. $\int_0^{\pi/2} \sin(x) \, dx = F(\pi/2) - F(0)$ $= -\cos(\pi/2) - (-\cos(0))$ $= -0 - (-1) = 1$.

Example: Evaluate $\int_e^{e^2} \frac{1}{x} \, dx$. An antiderivative of $\frac{1}{x}$ is $F(x) = \ln|x|$. Since the interval is from $e$ to $e^2$, $x$ is positive, so we can use $\ln(x)$. $\int_e^{e^2} \frac{1}{x} \, dx = F(e^2) - F(e)$ $= \ln(e^2) - \ln(e)$ $= 2 \ln(e) - 1 \ln(e)$ $= 2(1) - 1(1) = 1$.

Key Takeaway: The indefinite integral $\int f(x) \, dx$ gives a family of functions (the antiderivatives) $F(x) + C$. The definite integral $\int_a^b f(x) \, dx$ gives a single numerical value, representing the net area under the curve of $f(x)$ from $a$ to $b$. The FTC Part 2 provides the method to calculate this value using antiderivatives.

Summary of Antiderivative Concepts

The concept of an integral as an antiderivative is the foundation of integral calculus. It involves reversing the process of differentiation.

  • Antiderivative: A function $F(x)$ such that $F'(x) = f(x)$.
  • Indefinite Integral: The general antiderivative, denoted $\int f(x) \, dx = F(x) + C$, where $C$ is the constant of integration.
  • Basic Rules: Power rule, integral of a constant, trigonometric, exponential, and inverse trigonometric functions.
  • Properties: Linearity allows integration of sums and constant multiples.
  • Techniques: Integration by substitution and integration by parts are crucial for more complex integrals.
  • Fundamental Theorem of Calculus: Links differentiation and integration, providing a way to differentiate integrals (Part 1) and evaluate definite integrals using antiderivatives (Part 2).

Mastering these concepts and techniques is essential for solving problems in various fields, including physics, engineering, economics, and probability, where accumulation and change are studied.