Injective Surjective 613B89
1. **Problem statement:** We have a function $f: \mathbb{R} \to \mathbb{R}$ defined by $f(x) = x + 1$. We need to check if $f$ is injective, surjective, or bijective.
2. **Definitions:**
- A function is **injective** (one-to-one) if different inputs map to different outputs, i.e., if $f(a) = f(b)$ implies $a = b$.
- A function is **surjective** (onto) if every element in the codomain has a preimage in the domain, i.e., for every $y \in \mathbb{R}$, there exists $x \in \mathbb{R}$ such that $f(x) = y$.
- A function is **bijective** if it is both injective and surjective.
3. **Check injectivity:**
Assume $f(a) = f(b)$.
$$a + 1 = b + 1$$
Subtract 1 from both sides:
$$a = b$$
Since $a = b$ follows from $f(a) = f(b)$, $f$ is injective.
4. **Check surjectivity:**
Let $y \in \mathbb{R}$ be any real number. We want to find $x$ such that:
$$f(x) = y$$
Substitute $f(x) = x + 1$:
$$x + 1 = y$$
Solve for $x$:
$$x = y - 1$$
Since $x = y - 1$ is a real number for any real $y$, every $y$ in the codomain has a preimage in the domain. Thus, $f$ is surjective.
5. **Conclusion:** Since $f$ is both injective and surjective, it is bijective.