Answer:
percentage change from 1960 to 1970 =( 0.11 ÷0.25 ) × 100
= 44 %
Percentage change from 1970 to 1980 =( 0.83 ÷ 0.36) × 100
= 230.55%
percentage change from 1980 to 1990 = ( 0.16 ÷ 1.19) × 100
= 13.44%
percentage change from 1990 to 2000 = (- 0.09 ÷ 1.35) × 100
= -6.667%
Step-by-step explanation:
Item : 1960 1970 1980 1990 2000
gallon: $0.25 $0.36 $1.19 $1.35 $1.26
change : 0.36 - 0.25 = 0.11
percentage change from 1960 to 1970 =( 0.11 ÷0.25 ) × 100
= 44 %
Percentage change from 1970 to 1980 =( 0.83 ÷ 0.36) × 100
= 230.55%
percentage change from 1980 to 1990 = ( 0.16 ÷ 1.19) × 100
= 13.44%
percentage change from 1990 to 2000 = (- 0.09 ÷ 1.35) × 100
= -6.667%
Since cube has all sides equal and therefor al sides equal aera and 6 sides
SA=6s^2
96=6s^2
divide both sides by 6
16=s^2
sqrt both sides
4=s=y
4 is answer
Answer
12
Step-by-step explanation:
You need to use cosine because the side length needed is adjacent and you have the hypotenuse.Set up a proportion of "cos23 = x/13" and solve by cross multiplying. Then just round.
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:
![X\sim N(\mu = 50, \sigma =6)](https://tex.z-dn.net/?f=%20X%5Csim%20N%28%5Cmu%20%3D%2050%2C%20%5Csigma%20%3D6%29)
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