Respuesta :
Keep in mind that whenever you have a variable inside an expression, you have to think of it as a placeholder, hiding a certain value which we haven't specified yet.
Expressions with variables are a mean to express the generic idea underneath the expression, rather than its particular value.
So, an expression like x-7 represents the idea of subtracting 7 from a particular number. Once you give a specific value to x, the expression will become an actual subtraction between numbers, and you will be able to compute its value.
So, we have several values for x, which are several ways to turn our "abstract" subtraction into an actual, computable subtraction.
If [tex] x = 12 [/tex], the expression becomes [tex] 12-7 [/tex] and it evaluates to [tex] 5 [/tex].
If [tex] x = 19 [/tex], the expression becomes [tex] 19-7 [/tex] and it evaluates to [tex] 12 [/tex].
If [tex] x = 17 [/tex], the expression becomes [tex] 17-7 [/tex] and it evaluates to [tex] 10 [/tex].
If [tex] x = 6 [/tex], the expression becomes [tex] 6-7 [/tex] and it evaluates to [tex] -1 [/tex].
If [tex] x = 5 [/tex], the expression becomes [tex] 5-7 [/tex] and it evaluates to [tex] -2 [/tex].