Q:

which equation is shown in the graph?y = [[x]]y = [[x + 3]]y = [[x]] Β­- 3 y = |x Β­- 3|

Accepted Solution

A:
hmmmm judging by the values in between integers, like 2.5, 1.5, -2.5, -3.5 and so on, those values always produce a smaller number hmm that sounds whack... lemme put it differently.

a floor() function, namely ⌊xβŒ‹ like that, will floor the decimal values, so ⌊2.5βŒ‹ floors to 2, because 2.5 is between 2 and 3, and the smallest is 2, the "floor", the 3 will be the "ceiling".

so for a floor function, ⌊1.5βŒ‹ is 1, 1.5 is between 1 and 2, 1 is the smallest, ⌊-3.5βŒ‹ is -4, recall that on the negative side, the closer to 0, the larger, so -1 is much larger than -1000.

and say ⌊-1.35βŒ‹ is -2, -1.35 is between -2 an -1 and -2 is the smallest, the "floor".

that said

x = 2.5Β  Β    ⌊ 2.5 + 3βŒ‹ is ⌊5.5βŒ‹ which is 5

x = 1.5Β  Β  Β  ⌊ 1.5 + 3 βŒ‹ is ⌊4.5βŒ‹ which is 4

x = -2.749Β   ⌊ -2.749 + 3βŒ‹ is ⌊0.251βŒ‹ which is 0

anyway and so on, so you can pretty much see is the floor function of ⌊ x + 3βŒ‹.