
Thien D. answered 05/25/19
Duke MS Engineering Grad For Math Tutoring
If I understood you correctly, the function
f(x) = ⌈ -5, if x < 0
⌊ x2 – 5, if x ≥ 0 ("≥" means greater or equal)
should be evaluated at x = -2 and x = 4.
Let's start with x = -2. Since -2 is less than (<) 0, we use the "piece" of the piecewise function that uses that condition. In this case, if x < 0, f(x) = -5. Therefore, f(x=-2) = -5.
Next, x = 4. Since 4 is greater or equal to (≥) 0, we use the other "piece" of the piecewise function. In this case if x ≥ 0, f(x) = x2 – 5. Therefore, f(x=4) = (4)2 – 5 = 16 - 5 = 11.
So, f(x=-2) = -5 and f(x=4) =11.