Answer:k=0.67
Step-by-step explanation:
Answer:
6
Step-by-step explanation:
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
Answer:
5/6
Step-by-step explanation:
The "first" dice can land on any number, so there are 6 choices. The "second" can not be the same number as the first one. So there are 5 choices. We multiply to get 6*5=30 ways to roll a different number. There are 6*6 total ways so the probability is 30/36 which simplifies to 5/6.