Nathan B. answered 12/09/15
Tutor
5
(20)
Elementary and Algebraic skilled
Let's make it into columns just to see what's going on: a little better:
x | x - 3
------------
-1| -4
0 |
1 |
2 |
3 |
What's happening here is that you're given a list of x-values, and then you input the value into the expression x-3.
So it's giving usus:
-1 - 3 = -4
0 - 3 = what?
1 - 3 = what?
2 - 3 = what?
3 - 3 = what?
0 - 3 = -3
1 - 3 = -2
Continue the pattern, and you'll get the final two answers.