Answer:
(-6, 0)
Step-by-step explanation:
y = 4x + 24
Plug y = 0
0 = 4x + 24
4x = - 24
x = - 24/4
x = - 6
So, the graph of y = 4x + 24 intersect the x-axis at (-6, 0)
The answer is -8°F. This is because it DROPPED 8 degrees, meaning it was 8°F MINUS 8°F which would equal 0°F. Hope that helps!
<em>Complete Question:</em>
<em>Alicia is writing the program for a video game. For one part of the game she uses the rule (x,y)->(x-3,y+4) to move points on the screen. </em>
<em>A) what output does the rule give when the input is (-6,0)? </em>
<em>B)What output does the rule give when the input is (3,-4)? </em>
<em>C) Is the rule a function? Explain why it is or why it is not
</em>
Answer:
a. The output is (-9,4)
b. The output is (0,0)
c. See Explanation
Step-by-step explanation:
Given
Rule: (x,y)->(x - 3, y + 4)
Solving (a):
Inputs:


The outputs is as follows;






Hence:
The output is (-9,4)
Solving (b):
Inputs:


The outputs is as follows;






Hence:
The output is (0,0)
Solving (c):
The function is a rule and the rule is that:
It shifts the graph left by 3 units and up by 4 units
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