Inverse Finder- Locating Inverse Functions
What Is an Inverse Function?
An inverse function reverses what the original function does. If f(x) takes an input and produces an output, the inverse function f⁻¹(x) takes that output and returns the original input.
Think of it like a two-way street. A function is a one-way trip from x to y. The inverse is the trip back from y to x.
For a function and its inverse to exist, the original function must be one-to-one — each x maps to exactly one y, and each y maps back to exactly one x.
How to Find an Inverse Function
Here is the direct process:
- Replace f(x) with y
- Swap x and y
- Solve for y
- Replace y with f⁻¹(x)
That's it. Four steps. No magic.
Example Walkthrough
Find the inverse of f(x) = 3x + 5
Step 1: y = 3x + 5
Step 2: x = 3y + 5
Step 3: x - 5 = 3y → y = (x - 5)/3
Step 4: f⁻¹(x) = (x - 5)/3
Verify: f(f⁻¹(x)) = 3((x-5)/3) + 5 = x ✓
Notation You Need to Know
- f⁻¹(x) — the inverse of f(x). Not 1/f(x). That's a reciprocal, not an inverse.
- f(g(x)) — composition of functions
- f⁻¹(f(x)) = x — this must equal x for a valid inverse
Students confuse these constantly. f⁻¹(x) ≠ 1/f(x). They are completely different operations.
Domain and Range: The Critical Part
The domain of f(x) becomes the range of f⁻¹(x). The range of f(x) becomes the domain of f⁻¹(x).
This matters when restricting domains. If a function isn't one-to-one over its entire domain, you must restrict the domain to find an inverse.
Why Restricting Domains Matters
f(x) = x² is not one-to-one. It fails the horizontal line test. But if you restrict the domain to x ≥ 0, you get a one-to-one function with the inverse f⁻¹(x) = √x.
Restrict the domain to x ≤ 0 instead, and the inverse becomes f⁻¹(x) = -√x.
Same function, different inverses based on domain restriction.
Quick Reference Table
| Original Function | Inverse Function | Domain Restriction |
|---|---|---|
| f(x) = x + c | f⁻¹(x) = x - c | None |
| f(x) = cx | f⁻¹(x) = x/c | c ≠ 0 |
| f(x) = x² | f⁻¹(x) = √x | x ≥ 0 |
| f(x) = x² | f⁻¹(x) = -√x | x ≤ 0 |
| f(x) = 1/x | f⁻¹(x) = 1/x | x ≠ 0 |
| f(x) = eˣ | f⁻¹(x) = ln(x) | x > 0 |
| f(x) = ln(x) | f⁻¹(x) = eˣ | x > 0 |
Getting Started: Finding Your First Inverse
Try this with f(x) = 2x - 7
Step 1: y = 2x - 7
Step 2: x = 2y - 7
Step 3: x + 7 = 2y → y = (x + 7)/2
Step 4: f⁻¹(x) = (x + 7)/2
Test it: f(f⁻¹(x)) = 2((x+7)/2) - 7 = x + 7 - 7 = x ✓
Now try f(x) = √(x - 3)
Step 1: y = √(x - 3)
Step 2: x = √(y - 3)
Step 3: x² = y - 3 → y = x² + 3
Step 4: f⁻¹(x) = x² + 3
Domain note: original function requires x ≥ 3, so the inverse range must be x ≥ 3.
When Inverse Functions Don't Exist
Some functions have no inverse:
- f(x) = x² — fails horizontal line test without domain restriction
- f(x) = sin(x) — not one-to-one over its full domain
- f(x) = |x| — multiple x values give the same output
These functions aren't invertible as-is. You must restrict the domain to make them one-to-one before finding an inverse.
The Bottom Line
Finding inverse functions is a mechanical process. Swap variables, solve for the new y, done. The hard part is understanding domain restrictions and verifying your answer.
Always check your work by confirming that f(f⁻¹(x)) = x. If it doesn't equal x, something went wrong.