f is just a name,
x is just a place-holder.
These are all the same function:
Let us evaluate that function for x=3 :
f( 3 ) = 1 − 3 + 3 2 = 1 − 3 + 9 = 7
Evaluating can also mean replacing with an expression (such as 3m+1 or v 2 ).
Let us evaluate our function for x=1/r :
f( 1/r ) = 1 − ( 1/r ) + ( 1/r ) 2
f( a−4 ) = 1 − ( a−4 ) + ( a−4 ) 2 = 1 − a + 4 + a 2 − 8a + 16 = 21 − 9a + a 2You can use your ability to evaluate functions in other way:
Check: h(3) = 3(3) 2 − 6×3 − 1 = 27 − 18 − 1 = 8
I recommend putting the substituted values inside parentheses () , so you don't make mistakes.
Replace the variable "x" with "−3":
h(−3) = (−3) 2 + 2 = 9 + 2 = 11
Without the () you could make a mistake:
h(−3) = −3 2 + 2 = −9 + 2 = −7 (WRONG!)
Also be careful of this:
f(x+a) is not the same as f(x) + f(a)