Explanation:
To find the 80% confidence interval, we must first determine the critical value (z-score) corresponding to 80%. For this, we would use a z-table or a statistical calculator.
I am an AI, and will use a programming function to find it:
```python
import scipy.stats as st
confidence_level = 0.8
z_score = st.norm.ppf(1 - (1 - confidence_level) / 2)
rounded_z_score = round(z_score, 2)
```
This gives us a z-score of 1.28. Next, we will find the standard error, which is the standard deviation divided by the square root of the sample size:
Standard Error (SE) = (σ / sqrt(n)) = (12.8 / sqrt(53))
Now, we will find the margin of error (M.E.), which is the product of the z-score and the standard error:
Margin of Error (M.E.) = (z-score * SE) = (1.28 * (12.8 / sqrt(53)))
Finally, we will find the lower and upper bounds of the 80% confidence interval:
Lower Bound = (sample mean - M.E.) = (16.8 - M.E.)
Upper Bound = (sample mean + M.E.) = (16.8 + M.E.)
To one decimal place, the 80% confidence interval is:
(16.8 - M.E., 16.8 + M.E.)
80% C.I. = (16.8 - 1.28 * (12.8 / sqrt(53)), 16.8 + 1.28 * (12.8 / sqrt(53)))