Join the IDNLearn.com community and get your questions answered by knowledgeable individuals. Explore a wide array of topics and find reliable answers from our experienced community members.
f(x) is a function that takes some number x and outputs another one.
To get the output value, replace every instance of x in f(x) with the given number.
1. If f(x) = x ² - 4x, then
f (-3) = (-3)² - 4(-3) = 9 + 12 = 21
2. f(x) = x ² - x, so
f (-10) = (-10)² - (-10) = 100 + 10 = 110
3. f(x) = 3x + 1, so
f (-3) = 3(-3) + 1 = -9 + 1 = -8
4. f(x) = 4x - 2, so
f (8) = 4(8) - 2 = 32 - 2 = 30
5. f(x) = x ² + 2, so
f (0) = 0² + 2 = 0 + 2 = 2