Refrection of (-20, 4) across x-axis gives (-20, 4) = (-20, -4)
Refrection of (-20, 4) across y-axis gives (20, 4)
Refrection of (-20, 4) across y = -x gives (20, -4)
Refrection of (-20, 4) across y = 7 gives (20, 10)
<span>Given:
x g(x)
−3 17
−1 −3
0 −4
2 13
The true statement for the given function is:
</span><span>The function is decreasing from x = −3 to x = −1.
</span><span>
As you can see, when x = -3 the corresponding value of the function is 17 but when x = -1 the corresponding value is -3. There is a decrease of 20. </span>→<span> 17 - 20 = -3
</span>
Answer:
import pandas as pd
vec = pd.Series([7.12,24,4,18,12,9])
vec.plot(kind = 'hist')
Step-by-step explanation:
You can use python for that.
By doing
import pandas as pd
vec = pd.Series([7.12,24,4,18,12,9])
vec.plot(kind = 'hist')
And this is the result you get