Relations / Function Composition Inverse
Least You Need to Know: Composition and Inverses
Function composition means applying one function and then another. A function has an inverse only when each output comes from exactly one input.
جو کم از کم جاننا ضروری ہے
- `(f∘g)(x)` means `f(g(x))`, so the order matters.
- An inverse undoes a function.
- A function must be one-to-one to have an inverse on its codomain.
- Composition can change domain restrictions.
اہم علامتیں
f∘g
apply g, then f
f^{-1}
inverse function
f(f^{-1}(y))
returns y when the inverse exists
مختصر حل شدہ مثال
- Let `f(x)=2x+1` and `g(x)=x^2`.
- Then `(f∘g)(3)=f(9)=19`.
- If `f` is one-to-one, its inverse solves `y=2x+1`, so `f^{-1}(y)=(y-1)/2`.
عام غلطیاں
- Students often compute `g(f(x))` when asked for `f(g(x))`.
- Students often think every function has an inverse.
- Students often ignore domain restrictions when taking square roots.
اس قسم کے سوال کو کیسے پہچانیں
- Read composition from right to left.
- To find an inverse formula, solve `y=f(x)` for x.
- If two inputs share one output, an inverse function cannot work.
Next recommended lesson
Continue through this topic with Least You Need to Know: Injective, Surjective, and Bijective Functions.
Least You Need to Know: Injective, Surjective, and Bijective FunctionsRelated lessons
Keep going with nearby lessons in the same topic.