1. A team of engineers needs to approximate $\cos(0.3)$ to within $10^{-6}$ using a Maclaurin polynomial. What is the minimum degree polynomial required?
- A.Degree 4
- B.Degree 6
- C.Degree 8
- D.Degree 2
View Answer
Answer: Degree 6
Set up the error inequality: We need $\frac{(0.3)^{n+1}}{(n+1)!} < 10^{-6}$ where $M = 1$ for all derivatives of $\cos x$. Test degree 4 ($n = 4$): $\frac{(0.3)^5}{5!} = \frac{0.00243}{120} = 2.025 \times 10^{-5} > 10^{-6}$. Not sufficient. Test degree 6 ($n = 6$): $\frac{(0.3)^7}{7!} = \frac{0.0002187}{5040} \approx 4.34 \times 10^{-8} < 10^{-6}$. ✓ Sufficient. Why distractors fail: Degree 4 gives error $\approx 2 \times 10^{-5}$, too large. Degree 2 is far too crude. Degree 8 works but is more terms than necessary.