Answer:
1.x^2
2.x+8
3.x
4. 8x
Step-by-step explanation:
Length of old is x inches.
Because it is square we have that area of the old canvas : 
When we read : width of new is increased by 8 so : x+8
Length is x.
The difference of areas:
Old canvas : A1=
New canvas : 
Now we can find A2-A1:

Since -5 and -5 are the same number, they are on the same y axis so the only distance we need to calculate is between the X coordinates.
When looking for distance, you can not have a negative. what |-3|+|9| is looking for is the distance from 0 on the X axis. since distance can't be negative, (you go 3 miles away from your house in one direction, vs 3 miles in the opposite. both ways is positive, even with opposite directions. same with axis, it doesnt matter which way, only the number.) you need the absolute value of -3 to get the distance from the 0 on the x axis.
short version: distance is positive, and its adding the distances from the x axis to get distance from each other
Answer:
The answer is 5/6
Step-by-step explanation:
1/6 x 5 is 5/6. You can do 1 x 5 which is 5. You don't need to multiply anything else. The answer is 5/6
Answer:
8.5
Step-by-step explanation:
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