ANSWER
9
EXPLANATION
We want to find the distance between the points (3, -5) and (-6, -5).
The given points have the same y-coordinates .
This means it is a horizontal line.
We use the absolute value method to find the distance between the two points.
We find the absolute value of the distance between the x-values.
The distance between the two points is
|3--6|=|3+6|=|9|=9
If I did everything correctly, It should be DEF.
Hope you get an A :d
The answer if i understand correctly is 17x7x24=2,856 square inch
or thats what the calculator told me
Answer:
> a<-rnorm(20,50,6)
> a
[1] 51.72213 53.09989 59.89221 32.44023 47.59386 33.59892 47.26718 55.61510 47.95505 48.19296 54.46905
[12] 45.78072 57.30045 57.91624 50.83297 52.61790 62.07713 53.75661 49.34651 53.01501
Then we can find the mean and the standard deviation with the following formulas:
> mean(a)
[1] 50.72451
> sqrt(var(a))
[1] 7.470221
Step-by-step explanation:
For this case first we need to create the sample of size 20 for the following distribution:

And we can use the following code: rnorm(20,50,6) and we got this output:
> a<-rnorm(20,50,6)
> a
[1] 51.72213 53.09989 59.89221 32.44023 47.59386 33.59892 47.26718 55.61510 47.95505 48.19296 54.46905
[12] 45.78072 57.30045 57.91624 50.83297 52.61790 62.07713 53.75661 49.34651 53.01501
Then we can find the mean and the standard deviation with the following formulas:
> mean(a)
[1] 50.72451
> sqrt(var(a))
[1] 7.470221
6/(x-8)=2/(x+6)
times both sides by (x-8)(x+6)
6(x+6)=2(x-8)
distribute
6x+36=2x-16
minus 2x both sides
4x+36=-16
miinus 36 both sides
4x=-52
divide both sides by 4
x=-13