Answer:
21+3x
Step-by-step explanation:
Answer:
Step-by-step explanation:
18d + 12
The greatest common factor is 6, So we need to factor out 6
=> 6 ( 3d + 2 ) [Distributive property has been applied and this is the simplest form]
In order to find any of the info we need we have to find the first derivative of the equation. If
, then
. We are told to find the slope at point (1, 7). Using that x value in our derivative will give us the slope of the line at that point. y' = -(1)^2+8. So y' = 7. That's the slope of the line. Now we will use that slope along with the x and y coordinate in the slope-intercept form of a line to solve for b. 7 = 7(1) + b so b = 0. Our equation then is y = 7x. If you graph these in the same window on your calculator, you can see how perfectly that align at the given point. It's really quite perfect.
Answer:
Third option
Step-by-step explanation:
In this case we must write a quadratic equation in the vertex form.
We have the vertice. (-1, 5)
We know that the vertex form for a quadratic equation is:
.
Where (h, k) is the vertex.
So if the vertex is (-1, 5), the equation sought is:
Therefore the answer is the Third option.
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