~3 min read • Updated Feb 10, 2026
1. What Is a One‑to‑One Function?
A function is called one‑to‑one (or injective) if each output value corresponds to exactly one input value. Formally, a function f is one‑to‑one if:
f(a) = f(b) → a = b
This means no two different inputs can produce the same output.
2. Why One‑to‑One Functions Matter
One‑to‑one functions are important because only these functions have a well‑defined inverse function. If a function is not one‑to‑one, its inverse will not be a function.
Example:
f(x) = 2x + 3
This function is one‑to‑one because different inputs always produce different outputs.
3. Horizontal Line Test
The easiest way to check if a function is one‑to‑one is the horizontal line test. A function is one‑to‑one if and only if every horizontal line intersects its graph at most once.
Example:
The graph of f(x) = x^3 passes the horizontal line test, so it is one‑to‑one.
4. Algebraic Method for Checking Injectivity
To check if a function is one‑to‑one algebraically, set f(a) = f(b) and see if it implies a = b.
Example:
f(x) = x^3 + 1
f(a) = f(b)
a^3 + 1 = b^3 + 1
a^3 = b^3
a = b
Therefore, the function is one‑to‑one.
5. Functions That Are Not One‑to‑One
Some functions fail the horizontal line test and are not injective.
Example:
f(x) = x^2
Because f(2) = 4 and f(-2) = 4, the function is not one‑to‑one.
6. Restricting the Domain to Make a Function One‑to‑One
Sometimes a function can become one‑to‑one by restricting its domain.
Example:
f(x) = x^2
This function is not one‑to‑one on all real numbers, but if we restrict the domain to x ≥ 0, it becomes one‑to‑one.
7. One‑to‑One Functions and Inverses
A function has an inverse if and only if it is one‑to‑one. The inverse function reverses the mapping of the original function.
Example:
f(x) = 3x - 1
f⁻¹(x) = (x + 1) / 3
This inverse exists because the original function is one‑to‑one.
8. Graph Shape of One‑to‑One Functions
- They never repeat output values
- They always pass the horizontal line test
- They often show monotonic behavior (always increasing or always decreasing)
9. Conclusion
One‑to‑one functions are essential in mathematics because they ensure that each output corresponds to a unique input. This property allows the function to have an inverse and makes it easier to analyze and model mathematical relationships. Understanding injective functions is a key step in mastering advanced topics such as inverse functions, calculus, and algebraic structures.
Written & researched by Dr. Shahin Siami