Answer:
x+3y+z=21
Step-by-step explanation:
x+3y+z
4+3(5)+2
4+15+2
21
Note that 60 minutes is 1 standard deviation away from the mean and from recalling the 68-95-99.7 rule, the area that will remain is (100 - 68) = 32%. However, we only want the leftmost portion of this area, so the answer is 32%/2 = 16%.
<span>Choose D.</span>
Y = -3(2) + 11
y = -6 + 11
y = 5
Answer is a) y = -3x + 11 , when x is 2 y is 5
Answer: 
Step-by-step explanation:
You need to remember the mulplication of signs:

Knowing this, you can distributive the negative sign. Then you get:

Now you need to add the like terms. Then:

Finally, you can order the polynomial obtained in descending order. Therefore, the answer is:

Complete Question:
The complete question is shown on the first uploaded image
Answer:
The probability that the random you randomly select species that are greater than 200 kg is = 7/62
Step-by-step explanation:
Step One: Load the data set in to the R work space
data(mammals,package="MASS")
attach(mammals)
Step 2 : Obtain the list of the species that are greater than 200 and store it on y variable.
y <- subset(mammals,body>200)
Step Three : Obtain the total size
nrow(mammals)
Step Four : Obtain the sum of species greater than 200
sum(body > 200)
total size = 62
size with body > 200 = 7
hence
required probability = 7/62