Answer:
2.57
Explanation:
Given the data:
X : 17, 17, 16, 17, 23, 22, 21
Mean absolute deviation (MAD) :
Σ|x - xbar| ÷ n
xbar = Σx/ n
n = 7
Σx = (17 + 17 + 16 + 17 + 23 + 22 + 21) = 8
xbar = 133/7 = 19
|x - xbar| :
|17 - 19|= 2
|17 - 19| = 2
|16 - 19| = 3
|17 - 19| = 2
|23 - 19| = 4
|22 - 19| = 3
|21 - 19| = 2
Therefore,
MAD = (2+2+3+2+4+3+2) / 7
MAD = 18 / 7
MAD = 2.57
Answer:
larch-used for cladding and boats
southern yellow pine-flooring or joinery
western hemlock-doors or furniture
Explanation:
hope it helps :)
Answer:
Answered in Python
for i in range(21):
for j in range(i):
print(i, end=' ')
print(" ")
Explanation:
This iteration iterates from 1 to 20
for i in range(21):
This iteration iterates from 1 to current number
for j in range(i):
This prints the current number in the a number of times equal to itself
print(i, end=' ')
This enables printing on new line
print(" ")