Answer:
5x+31
Step-by-step explanation:
f(g(x))
5(x+7) -4
5x+35-4
5x+31=f(g(x))
P = 10 + x + 2x + 7
= (10 + 7) + (x + 2x)
= 17 + 3x
Therefore, the perimeter is 17 + 3x feet.
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