CAT Functions Workbook With GIF and Tricks
CAT Functions Workbook With GIF and Tricks
📘 Concept Summary
1. Function: A relationship where each input has exactly one output. Example: f(x) = 2x
+ 3.
2. Composite Function: f(g(x)) means apply g first, then f. Example: f(x) = 2x, g(x) = x+1
⇒ f(g(3)) = f(4) = 8.
3. Inverse Function: Reverse the function. If f(x) = 3x + 1 ⇒ f⁻¹(x) = (x - 1)/3.
4. Functional Equations: Equations involving f(x) like f(x) + f(1 - x) = 1. Use substitution
to find values.
5. Piecewise Functions: Defined differently over different domains. Example: f(x) = x if x
≤ 0, x² if x > 0.
Solution: Let x = 0.4 ⇒ f(0.4) + f(0.6) = 1. Let x = 0.6 ⇒ f(0.6) + f(0.4) = 1 ⇒ f(0.4) = f(0.6)
= 0.5
5. 5. If f(x) = x for x ≤ 0 and f(x) = x² for x > 0, find f(-2), f(0), f(2).