Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Differentiating Inverse Functions

Lesson ~10 min read

In simple terms: In simple terms, differentiating inverse functions is about finding the slope of a function's "mirror image" by using the slope of the original function.

Why this matters

Imagine you're designing a flight simulator. The plane's controls map joystick position to the rate of climb. Let's say c = f(j) where j is the joystick's angle and c is the climb rate in feet per minute. Your program knows this function perfectly.

But what if the pilot needs the opposite? They might think, "I need to climb at 500 feet per minute. What joystick position do I need?" That's the inverse function, j = f⁻¹(c).

Now, for the autopilot to make smooth adjustments, it needs to know how sensitive this inverse is. If the pilot wants to increase the climb rate from 500 to 510, how much does the joystick angle need to change? That's the derivative of the inverse function. Today, we'll learn a clever shortcut to find this derivative without ever needing to solve for the inverse function itself.

Concept overview

flowchart TD
    A[Start: Find (f⁻¹)'(b)] --> B{Find 'a' such that f(a) = b};
    B --> C[Test small integers or use a table];
    C --> D{Found it! Now we know f⁻¹(b) = a};
    D --> E[Find the derivative of the original function, f'(x)];
    E --> F[Calculate the value of f'(a)];
    F --> G[The answer is the reciprocal];
    G --> H[Result: 1 / f'(a)];
This flowchart shows the step-by-step process for finding the derivative of an inverse function at a point 'b'. It starts by finding the corresponding input 'a' on the original function, then finding the derivative of the original function at 'a', and finally taking the reciprocal of that value to get the answer.

Core explanation

Hey there, future calculus pros. It's Saavi. Let's dive into one of the most elegant shortcuts in calculus: finding the derivative of an inverse function.

The Mirror and the Reflection

Remember from pre-calculus that a function f(x) and its inverse f⁻¹(x) are reflections of each other across the line y=x.

  • If the point (a, b) is on the graph of f(x), it means f(a) = b.
  • Then the point (b, a) must be on the graph of f⁻¹(x), meaning f⁻¹(b) = a.

Think of it like this: if Maya lives in Dallas, the function City(Maya) returns "Dallas". The inverse function Resident("Dallas") would return "Maya". The inputs and outputs are swapped.

This swapping is the key. The slope (the derivative!) at a point on f(x) is directly related to the slope at the swapped point on f⁻¹(x).

Imagine a steep ski slope on the original function, maybe with a slope of 4. When you reflect it across y=x, that steepness becomes shallowness. The new slope on the inverse function will be 1/4. They are reciprocals.

Deriving the Formula

We can prove this relationship with a tool you already have: the chain rule.

We know from the definition of an inverse that for any x in the domain of the inverse function: f(f⁻¹(x)) = x

This is our starting point. Now, let's differentiate both sides of this equation with respect to x.

On the right side, the derivative of x is just 1. Easy.

On the left side, we have a function inside another function. This is a job for the chain rule! d/dx [f(f⁻¹(x))] = f'(f⁻¹(x)) * (f⁻¹)'(x)

So, putting it all together: f'(f⁻¹(x)) * (f⁻¹)'(x) = 1

We want to find the derivative of the inverse, which is (f⁻¹)'(x). Let's just solve for it algebraically:

(f⁻¹)'(x) = 1 / f'(f⁻¹(x))

And that's it. That's the magic formula. It looks a little intimidating, but let's break down what it says in plain English.

To find the slope of the inverse at a point x:

  1. Find the value of the inverse function at that point, f⁻¹(x). Let's call this value a.
  2. Go back to the original function's derivative, f'(x).
  3. Plug that value a into f'(x).
  4. Your answer is the reciprocal of that result: 1 / f'(a).

Derivatives of Inverse Trigonometric Functions

This same logic helps us find the derivatives of inverse trig functions. You'll need to memorize these, but they all come from this same process.

Let's quickly derive one to see how it works. Let y = arcsin(x). This is the same as saying sin(y) = x. Now, we differentiate sin(y) = x implicitly with respect to x: cos(y) * dy/dx = 1 dy/dx = 1 / cos(y)

This is correct, but we want the answer in terms of x. We know sin²(y) + cos²(y) = 1, so cos(y) = sqrt(1 - sin²(y)). Since sin(y) = x, we can substitute that in: cos(y) = sqrt(1 - x²).

So, dy/dx = 1 / sqrt(1 - x²).

You don't need to derive these on the exam, but seeing it once helps you trust the formulas.

Here are the three you absolutely must know for the AP exam:

Function Derivative
d/dx [arcsin(u)] u' / sqrt(1 - u²)
d/dx [arccos(u)] -u' / sqrt(1 - u²)
d/dx [arctan(u)] u' / (1 + u²)

Notice the u' in the numerator. That's the chain rule! Never forget it. If you're differentiating arctan(5x), the u is 5x and u' is 5.

This method is powerful because it lets us find a derivative even when we can't write down the inverse function. It's a beautiful example of how different calculus concepts connect.

Worked examples

Let's walk through a few problems together. The key is to be systematic and not rush.

Example 1

Using the Formula

Problem: Let f(x) = x⁵ + 3x - 2. Find the value of (f⁻¹)'(2).

Solution: First, let's look at what we're asked for. We need the derivative of the inverse function, evaluated at x=2. Our formula is (f⁻¹)'(b) = 1 / f'(f⁻¹(b)). In this case, b=2.

  1. Find f⁻¹(2): This is the trickiest step for many. f⁻¹(2) is the value, let's call it a, such that f(a) = 2. We need to solve the equation: a⁵ + 3a - 2 = 2 a⁵ + 3a = 4 At this point, you might panic. You don't know how to solve a fifth-degree polynomial! And you don't have to. On the AP exam, these problems are designed to have a simple integer answer you can find by inspection. Let's test some small values for a. If a=0, 0⁵ + 3(0) = 0. Nope. If a=1, 1⁵ + 3(1) = 1 + 3 = 4. Yes! We found it. So, f(1) = 2, which means f⁻¹(2) = 1.

  2. Find the derivative of the original function, f'(x): f(x) = x⁵ + 3x - 2 Using the power rule, f'(x) = 5x⁴ + 3.

  3. Evaluate f' at the point we found in step 1: We need to calculate f'(f⁻¹(2)), which is f'(1). f'(1) = 5(1)⁴ + 3 = 5 + 3 = 8.

  4. Take the reciprocal: The final answer is 1 / f'(1). (f⁻¹)'(2) = 1/8.

Example 2

Table Problem

Problem: The function g(x) is differentiable and has an inverse g⁻¹(x). Selected values for g(x) and g'(x) are given in the table. Find the derivative of g⁻¹(x) at x=4.

x g(x) g'(x)
1 4 6
2 5 7
3 1 -2
4 9 3

Solution: This looks different, but the process is exactly the same. We want (g⁻¹)'(4).

  1. Find g⁻¹(4): We need to find the x value that makes g(x) = 4. Look at the g(x) column in the table. We see that g(1) = 4. Therefore, g⁻¹(4) = 1.

  2. Find the derivative of the original function, g'(x): We don't have a formula for g'(x), but we have the value we need in the table!

  3. Evaluate g' at the point from step 1: We need g'(g⁻¹(4)), which is g'(1). Looking at the table, we find the row where x=1 and read the value in the g'(x) column. g'(1) = 6.

  4. Take the reciprocal: (g⁻¹)'(4) = 1 / g'(1) = 1/6.

Try it yourself

Ready to try on your own? Remember the process, not just the formula.

Problem 1: Let h(x) = x³ + 4x. If k(x) is the inverse of h(x), what is the value of k'(5)?

Hint 1: You are looking for (h⁻¹)'(5). Hint 2: What value of x makes h(x) = 5? Don't overthink it; try a small integer. Hint 3: Once you find that x, what's h'(x) at that value?

Problem 2: Find the derivative of y = arcsin(cos(x)).

Hint 1: This is a chain rule problem. The "outer" function is arcsin(u) and the "inner" function is u = cos(x). Hint 2: The derivative of arcsin(u) is u' / sqrt(1 - u²). What are your u and u'? Hint 3: You might be able to simplify your final answer using a trig identity.

You've got this!