5. Calculus

Reverse Chain Rule

Reverse Chain Rule

students, imagine you are given a function that looks complicated on the outside but has a simple pattern hidden inside πŸ”. In calculus, the reverse chain rule helps you work backward from a derivative pattern to find an original function. This lesson will show you how to recognize the pattern, apply the correct technique, and connect it to integration in IB Mathematics Analysis and Approaches SL.

Introduction: Why Reverse Chain Rule Matters

The reverse chain rule is a powerful idea in integration. It is used when an integrand looks like a composite function and part of it is the derivative of the inside function. Instead of expanding everything, you can β€œreverse” the chain rule and integrate efficiently.

By the end of this lesson, students, you should be able to:

  • explain the main ideas and terminology behind the reverse chain rule,
  • apply IB Mathematics Analysis and Approaches SL methods to integrals of this type,
  • connect the technique to differentiation, integration, and substitution,
  • summarize where it fits in the wider study of calculus,
  • use examples to justify why the method works.

A common example is finding an antiderivative of a function like $2x\cos(x^2)$. The expression $x^2$ is inside the cosine, and its derivative $2x$ is also present. That matching structure is the clue that reverse chain rule is the right tool ✨.

1. From Chain Rule to Reverse Chain Rule

The chain rule is a rule for differentiating composite functions. If $y=f(g(x))$, then

$$

$\frac{dy}{dx}=f'(g(x))\cdot g'(x).$

$$

This tells us that the derivative of a composite function is the derivative of the outside function, evaluated at the inside function, multiplied by the derivative of the inside function.

Reverse chain rule works in the opposite direction. Instead of starting with a function and finding its derivative, you start with a derivative-like pattern and try to recover the original function. In integration, this usually means looking for an integrand of the form

$$

f'(g(x))\,g'(x),

$$

so that the antiderivative is

$$

f(g(x)) + C.

$$

The symbol $C$ is the constant of integration, because many different functions have the same derivative.

For example, if you see

$$

$\int 2x\cos(x^2)\,dx,$

$$

you may notice that the inside function is $x^2$ and its derivative is $2x$. This suggests the antiderivative is related to $\sin(x^2)$, because the derivative of $\sin(u)$ is $\cos(u)\cdot \frac{du}{dx}$.

So,

$$

$\int 2x\cos(x^2)\,dx=\sin(x^2)+C.$

$$

2. Recognizing the Pattern

The biggest skill in reverse chain rule is pattern recognition. Not every integral is ready for this method, but many IB exam questions are designed so the structure is visible.

Look for these signs:

  • a function inside another function, such as $\sin(3x)$, $e^{x^2}$, or $\ln(5x+1)$,
  • a factor outside that looks like the derivative of the inside function,
  • a composition that can be written as $f(g(x))$.

Here are some examples.

Example 1

Evaluate

$$

$\int 6x(3x^2+1)^4\,dx.$

$$

The inside function is $u=3x^2+1$. Then

$$

$\frac{du}{dx}=6x.$

$$

This matches the factor outside, so we can integrate directly:

$$

$\int 6x(3x^2+1)^4\,dx=\frac{(3x^2+1)^5}{5}+C.$

$$

Example 2

Evaluate

$$

$\int \frac{5}{2x+3}\,dx.$

$$

The inside function is $u=2x+3$, and

$$

$\frac{du}{dx}=2.$

$$

The numerator is not exactly $2$, but we can adjust:

$$

$\int \frac{5}{2x+3}\,dx=\frac{5}{2}\int \frac{2}{2x+3}\,dx.$

$$

Now reverse chain rule gives

$$

$\frac{5}{2}\ln|2x+3|+C.$

$$

The absolute value is needed because the derivative of $\ln|u|$ is $\frac{1}{u}\cdot \frac{du}{dx}$.

3. The Idea of Substitution

Reverse chain rule is closely linked to substitution, which is a general method for integration. In IB Mathematics Analysis and Approaches SL, substitution helps simplify integrals by changing variables.

If we let

$$

u=g(x),$$

then

$$

$\frac{du}{dx}=g'(x),$

$$

and the integral becomes easier when written in terms of $u$.

For example, consider

$$

$\int 4x\,e^{x^2}\,dx.$

$$

Let

$$

$u=x^2.$

$$

Then

$$

$du=2x\,dx.$

$$

Since the integral contains $4x\,dx$, we rewrite it as $2(2x\,dx)$:

$$

$\int 4x\,e^{x^2}\,dx=2\int e^u\,du.$

$$

Now integrate:

$$

$2e^u+C=2e^{x^2}+C.$

$$

This shows how reverse chain rule and substitution are really two views of the same idea. Reverse chain rule is the quick recognition method, while substitution is the formal procedure.

4. Common Function Types in IB Problems

IB questions often use familiar functions where the reverse chain rule appears naturally.

Exponential functions

A standard pattern is

$$

$\int g'(x)e^{g(x)}\,dx=e^{g(x)}+C.$

$$

Example:

$$

$\int 3x^2 e^{x^3}\,dx=e^{x^3}+C.$

$$

Trigonometric functions

A standard pattern is

$$

$\int g'(x)\cos(g(x))\,dx=\sin(g(x))+C,$

$$

and also

$$

$\int g'(x)\sin(g(x))\,dx=-\cos(g(x))+C.$

$$

Example:

$$

$\int 4\cos(4x+1)\,dx=\sin(4x+1)+C.$

$$

Logarithmic functions

A standard pattern is

$$

$\int \frac{g'(x)}{g(x)}\,dx=\ln|g(x)|+C.$

$$

Example:

$$

$\int \frac{6x}{3x^2-5}\,dx=\ln|3x^2-5|+C.$

$$

These patterns are important because they save time and reduce algebraic complexity 🧠.

5. Why It Works

The reverse chain rule works because differentiation and integration are inverse processes. If

$$

$F'(x)=f(x),$

$$

then integrating $f(x)$ gives

$$

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

$$

When the integrand has the form $f'(g(x))g'(x)$, it matches the derivative of a composite function. By the chain rule,

$$

$\frac{d}{dx}f(g(x))=f'(g(x))g'(x).$

$$

So if we integrate $f'(g(x))g'(x)$, we recover $f(g(x))$.

This is not just a trick; it is a direct consequence of how differentiation works. In calculus, many methods are based on spotting patterns that follow from core rules. Reverse chain rule is one of the most useful examples.

6. IB-Style Examples and Reasoning

Example 3: Definite integral

Evaluate

$$

$\int_0^1 6x(1+x^2)^2\,dx.$

$$

Let

$$

$u=1+x^2,$

$$

so

$$

$du=2x\,dx.$

$$

Then

$$

$6x\,dx=3\,du.$

$$

Change the limits: when $x=0$, $u=1$; when $x=1$, $u=2$.

So

$$

$\int_0^1 6x(1+x^2)^2\,dx=\int_1^2 3u^2\,du.$

$$

Now integrate:

$$

$3\left[\frac{u^3}{3}\right]_1^2=[u^3]_1^2=8-1=7.$

$$

Example 4: An exam-style justification

Suppose you are asked to find

$$

$\int (2x+1)e^{x^2+x}\,dx.$

$$

You should notice that the derivative of $x^2+x$ is $2x+1$. Let

$$

$u=x^2+x.$

$$

Then

$$

$du=(2x+1)\,dx.$

$$

So the integral becomes

$$

$\int e^u\,du=e^u+C=e^{x^2+x}+C.$

$$

In an IB response, it is good to show the recognition step clearly. That shows mathematical reasoning, not just the final answer.

7. Conclusion

students, the reverse chain rule is a central integration technique in calculus because it turns complicated composite expressions into manageable antiderivatives. It depends on recognizing when an integrand matches the derivative of a composite function. In practice, this connects directly to substitution, making it a bridge between differentiation and integration.

In IB Mathematics Analysis and Approaches SL, you should be able to identify the inside function, match its derivative, and integrate efficiently. With practice, reverse chain rule becomes a fast and reliable tool for solving many exponential, trigonometric, logarithmic, and polynomial-composite integrals βœ….

Study Notes

  • The reverse chain rule is used in integration when an integrand has the form $f'(g(x))g'(x)$.
  • It is the inverse idea of the chain rule for differentiation.
  • A key skill is spotting the inside function $g(x)$ and checking whether its derivative appears in the integrand.
  • Common patterns include:
  • $\int g'(x)e^{g(x)}\,dx=e^{g(x)}+C$,
  • $\int g'(x)\cos(g(x))\,dx=\sin(g(x))+C$,
  • $\int \frac{g'(x)}{g(x)}\,dx=\ln|g(x)|+C$.
  • If the derivative of the inside function is missing, you may need to rewrite the integrand or use substitution.
  • For definite integrals, changing the variable and the limits can make the work cleaner.
  • The constant $C$ appears because differentiation removes constants.
  • Reverse chain rule connects directly to substitution, which is the formal method for many of these integrals.
  • In IB Mathematics Analysis and Approaches SL, clear working and correct notation matter as much as the final answer.
  • This technique is useful in calculus problems involving areas, motion, and growth models where composite functions appear.

Practice Quiz

5 questions to test your understanding

Reverse Chain Rule β€” IB Mathematics Analysis And Approaches SL | A-Warded