Answer:
31
Step-by-step explanation:
(-1-2)^2+(-5-1)^2
(1+4)+(25+1)
5+26
31
Answer:
b,f
Step-by-step explanation:
b: if sandi scored 3 more points than randi, then sandis points are equal to 3+randi
f: so the equation is 3+r=s,
so input values
3+r=18
r=18-3
r=15
Square root of 4 is 2
Square root of 9 is 3
7 is between 4 and 9, so its square root is somewhere between 2 and 3, which means the correct answer is between P and Q
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