Answer:
18
Step-by-step explanation:
Factors of 54
1, 2, 3, 6, 9, 18, 27
Factors of 72
1, 2, 3, 4, 6, 8, 9, 12, 18, 24, 36
Factors of 18
1, 2, 3, 6, 9, 18.
Greatest Common Factor
We found the factors and prime factorization of 72, 54 and 18. The biggest common factor number is the GCF number.
So the greatest common factor 72, 54 and 18 is 18.
A midsegment is half as long as the one it's parallel to.
2. x = 16/2 = 8
3. y+4 = 6
y = 2
4. z/2 = 15/2
z = 15
5. (5/2)x + 4 = (6x +4)/2
2 = x/2
x = 4 . . . . . . matches selection b.
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
Answer:
f(x) = -x -1
Step-by-step explanation:
f(x) = mx + b
find 2 points on the line:
A( -1 , 0)
B( 0 , -1)
Put them in the equation and fine m & b:
0=m(-1)+b
-1=m(0)+b
so b= -1
and m= -1
so f(x) = -x-1