You need to use the distance formula


so the distance between points (5,-2) and (-3,8) is

which won't simplify so it stays as is
You could graph this, but it is simpler in this case to do it mathematically.
Since the x and values are the same (implying undefined slope) you can subtract the smaller y value from the larger y value. 2.5-1.2=1.3.
Answer:
40% and 60%
╰(*°▽°*)╯
Step-by-step explanation:
60% of 17 is 10.2 making 40% and 60% the closest choice to 9
So, the answer would be 40% and 60%
╰(*°▽°*)╯
She did not use 181/24 or 7 13/24 meters of cloth
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