Swapnil
- 459
- 6
What is exactly the difference between f and f(n) and why can't we write (f \circ g)(n) as f(n) \circ g(n)?
Last edited:
The discussion clarifies the distinction between a function and its value at a specific point, specifically addressing the notation f versus f(n). It establishes that f represents the function itself, while f(n) denotes the output of the function at the input n. The composition operator (f \circ g) acts on functions rather than their values, making the expression f(n) \circ g(n) incorrect. Instead, the correct formulation is f(g(n)), which maintains the integrity of function composition.
PREREQUISITESStudents of mathematics, educators teaching function concepts, and anyone looking to deepen their understanding of function notation and composition.