which equation is shown in the graph?y = [[x]]y = [[x + 3]]y = [[x]] Β- 3 y = |x Β- 3|
Question
Answer:
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β.
solved
general
10 months ago
2999