
David W. answered 08/15/20
Experienced Prof
≤1. Complete the table below
x | f(x) |
0 | 1 |
0.5 | 1 |
1 | 1 |
1.5 | 1 |
2 | 3 |
2.5 | 3 |
3 | 3 |
3.5 | 3 |
4 | 5 |
2. Using the table above, you may notice some type of a rounding pattern. What is the pattern?
Using INT(x) as the function that returns only the integer part of the result:
f(x) = 2*INT(x/2) + 1
3. Create a piecewise function notation for the graph above, over the interval -4 ≤ x ≤ 4.
The piecewise function is:
f(x) = { -3 for -4 ≤ x < -2
-1 for -2 ≤ x < 0
1 for 0 ≤ x < 2
3 for 2 ≤ x < 4
5 for 4 = x
If you can write f(x) using INT(x), then:
f(x) = { (2*(INT(x/2) + 1 ) for -4 ≤ x ≤ 4
Logan M.
Thank you 2 very much! This helped me to understand the problem alot!08/16/20