Step-by-step explanation:
To multiply the fractions, like
![\frac{1}{4} \times \frac{1}{9}](https://tex.z-dn.net/?f=%20%5Cfrac%7B1%7D%7B4%7D%20%20%5Ctimes%20%20%5Cfrac%7B1%7D%7B9%7D%20)
Multiply the top,
then multiply the bottom.
![\frac{1}{4} \times \frac{1}{9} = \frac{1 \times 1}{4 \times 9} = \frac{1}{36}](https://tex.z-dn.net/?f=%20%5Cfrac%7B1%7D%7B4%7D%20%20%5Ctimes%20%20%5Cfrac%7B1%7D%7B9%7D%20%20%3D%20%20%5Cfrac%7B1%20%5Ctimes%201%7D%7B4%20%5Ctimes%209%7D%20%20%3D%20%20%5Cfrac%7B1%7D%7B36%7D%20)
Try to use a calculator if you aren't arithmetic heavy, but I suggest you to try to remember them because they are going to be helpful for courses like Algebra, Calculus, Statistics, etc.
To divide fractions, like
![\frac{ \frac{1}{5} }{ \frac{1}{8} }](https://tex.z-dn.net/?f=%20%5Cfrac%7B%20%5Cfrac%7B1%7D%7B5%7D%20%7D%7B%20%5Cfrac%7B1%7D%7B8%7D%20%7D%20)
You take the top number,
![\frac{1}{5}](https://tex.z-dn.net/?f=%20%5Cfrac%7B1%7D%7B5%7D%20)
Then you flip the bottom number,
![\frac{8}{1}](https://tex.z-dn.net/?f=%20%5Cfrac%7B8%7D%7B1%7D%20)
Then multiply the two
![\frac{1}{5} \times \frac{8}{1} = \frac{8}{5}](https://tex.z-dn.net/?f=%20%5Cfrac%7B1%7D%7B5%7D%20%20%5Ctimes%20%20%5Cfrac%7B8%7D%7B1%7D%20%20%3D%20%20%5Cfrac%7B8%7D%7B5%7D%20)
And that is your answer. Comment if you need more clarification
I think it would require 100 workers since 1 worker digs up 1 yard.
Hope this helps.
Answer:2/16
Step-by-step explanation:
Based on the mean, standard deviation, and the graph, the indicated IQ score would be 115.
<h3>What is the indicated IQ score?</h3>
First, find the z value:
P(Z<z) = 1 - tail value
= 1 - 0.1587
= 0.8413
According to the z-value, this gives a value of:
z = 1
The indicated IQ score is:
= mean + z value z standard deviation
= 100 + 1 x 15
= 115
Find out more on normal distributions at brainly.com/question/4079902
#SPJ1
Let me use Python to find the answers
Program.
![\tt import\:statistics \:as\:stats](https://tex.z-dn.net/?f=%5Ctt%20import%5C%3Astatistics%20%5C%3Aas%5C%3Astats)
![\tt Prices=[75,120,120,145,150,150,150,175,175,200,225,275]](https://tex.z-dn.net/?f=%5Ctt%20Prices%3D%5B75%2C120%2C120%2C145%2C150%2C150%2C150%2C175%2C175%2C200%2C225%2C275%5D)
![\tt print(stats.mean(Prices))](https://tex.z-dn.net/?f=%5Ctt%20print%28stats.mean%28Prices%29%29)
![\tt print(stats.median(Prices))](https://tex.z-dn.net/?f=%5Ctt%20print%28stats.median%28Prices%29%29)
![\tt print(stats.mode(Prices))](https://tex.z-dn.net/?f=%5Ctt%20print%28stats.mode%28Prices%29%29)
Output:;
- Mean=163.333
- Median=150.0
- Mode=150
Console attached