Differentiating Inverse Functions
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)];
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 off(x), it meansf(a) = b. - Then the point
(b, a)must be on the graph off⁻¹(x), meaningf⁻¹(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:
- Find the value of the inverse function at that point,
f⁻¹(x). Let's call this valuea. - Go back to the original function's derivative,
f'(x). - Plug that value
aintof'(x). - 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.
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.
-
Find
f⁻¹(2): This is the trickiest step for many.f⁻¹(2)is the value, let's call ita, such thatf(a) = 2. We need to solve the equation:a⁵ + 3a - 2 = 2a⁵ + 3a = 4At 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 fora. Ifa=0,0⁵ + 3(0) = 0. Nope. Ifa=1,1⁵ + 3(1) = 1 + 3 = 4. Yes! We found it. So,f(1) = 2, which meansf⁻¹(2) = 1. -
Find the derivative of the original function,
f'(x):f(x) = x⁵ + 3x - 2Using the power rule,f'(x) = 5x⁴ + 3. -
Evaluate
f'at the point we found in step 1: We need to calculatef'(f⁻¹(2)), which isf'(1).f'(1) = 5(1)⁴ + 3 = 5 + 3 = 8. -
Take the reciprocal: The final answer is
1 / f'(1).(f⁻¹)'(2) = 1/8.
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).
-
Find
g⁻¹(4): We need to find thexvalue that makesg(x) = 4. Look at theg(x)column in the table. We see thatg(1) = 4. Therefore,g⁻¹(4) = 1. -
Find the derivative of the original function,
g'(x): We don't have a formula forg'(x), but we have the value we need in the table! -
Evaluate
g'at the point from step 1: We needg'(g⁻¹(4)), which isg'(1). Looking at the table, we find the row wherex=1and read the value in theg'(x)column.g'(1) = 6. -
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!
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.
(f⁻¹)'(x) = 1 / f'(f⁻¹(x))
- FUN-3.E: Calculate derivatives of inverse and inverse trigonometric functions.
- FUN-3.E.1
- The chain rule and definition of an inverse function can be used to find the derivative of an inverse function, provided the derivative exists.
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)];
Read what Saavi narrates
Hey everyone, it's Saavi from Shrutam. Let's talk about one of my favorite topics... differentiating inverse functions.
Imagine you're designing a flight simulator. The joystick's position controls the plane's rate of climb. Let's say the function is climb equals f of joystick. But what if the pilot needs the opposite? They think, "I need to climb at 500 feet per minute. Where do I put the joystick?" That's the inverse function. And the derivative of that inverse tells the autopilot how sensitive the controls are.
The core idea is simple: a function and its inverse have a reciprocal relationship between their slopes. If you know the slope of the original function, you can find the slope of its inverse with a simple flip. A steep slope of 3 on the original becomes a shallow slope of 1 over 3 on the inverse.
Let's try a classic AP exam-style problem. Imagine you have a table of values for a function called g of x and its derivative, g prime of x. The problem asks you to find the derivative of the inverse of g, at x equals 4.
The first thing we need to do is find the inverse of g at 4. That means we look at our table and find which x-value gives us a g of x value of 4. Let's say we look at the table, and we see that g of 1 equals 4. Perfect. That means the inverse of g at 4 is 1.
Now, we need the slope of the original function... but not at 4. We need it at the point we just found, which is 1. So we go back to our table and look up the value of g prime of 1. Let's say the table tells us that g prime of 1 is 6.
We're almost done. The slope of the inverse is just the reciprocal of that value. So, the derivative of the inverse of g at 4 is 1 over 6.
The most common mistake here is to look at the number 4 and immediately use the derivative value at 4 from the table. Students will see g prime of 4 is, say, 3, and answer 1 over 3. But that's not right. You have to do that first step of finding the corresponding point. The derivative of the inverse at 4 depends on the derivative of the original function at 1, in our example.
It feels a little backwards at first, but once you practice it a few times, you'll see the pattern. It's an elegant and powerful tool. You can do this.
The formula is `1 / f'(f⁻¹(b))`. The slopes correspond at reflected points `(a, b)` and `(b, a)`, not at the same x-coordinate.
First, find the value `a` such that `f(a) = b`. Then, calculate `1 / f'(a)`.
It's a huge waste of time and often leads nowhere. The formula is designed specifically to avoid this step.
Trust the formula. You almost never need to find the inverse function's equation.
These are completely different concepts. `f⁻¹(x)` swaps inputs and outputs, while `1/f(x)` is just a numerical reciprocal.
When you see the `-1` superscript on a function name, immediately think "inverse," not "reciprocal."
The argument of the function is `x²`, not just `x`. Its derivative, `2x`, must be part of the answer.
Always write the formulas as `d/dx [arctan(u)] = u' / (1 + u²)`. Identify `u` and find `u'` before you do anything else.
It leads to using the wrong numbers. For `(g⁻¹)'(4)`, you might use `g'(4)` instead of finding the correct `x` value first.
Follow the process mechanically. Step 1: Find `a` where `g(a)=4`. Step 2: Look up `g'(a)`. Step 3: Take the reciprocal.