Homework on Functions - Questions
-
Describe what a function does in your own words
A function is an equation for which any x x that can be plugged into the equation will yield exactly one y y out of the equation. -
Calculate the output of the following function
a) Output is 4
b) Output is 17
c) Output is 0
- Write the definition of a function f that takes an input x, divides it by four and then outputs that result subtracted by 5.
f(x) = x / 4 - 5