Practice question · Select all that apply
Select every reason Taylor series matter for computing.
Hints
- Three of these are the practical motivations the lesson gives.
- Two options claim more than any finite approximation can deliver.
Show the answer
- A. The number of terms trades accuracy against cost
- B. A polynomial needs only addition and multiplication, which hardware provides
- E. Functions like sine and the exponential have no finite arithmetic formula
Why
Taylor series exist because hardware can only add and multiply, while sine and the exponential are defined by limits. Choosing how many terms to keep is a genuine engineering decision, but no truncation is exact everywhere and none of it escapes floating-point rounding.
Practise Taylor Series and Approximation
The app has 6 more questions on this lesson, and keeps your place in the course. Computer Science I is free to start.
More questions on Taylor Series and Approximation
- Complete the statement about where a Taylor polynomial works best.
- Libraries compute sin(x) from a polynomial rather than from any geometric definition. Why is a polynomial the…
- Order what the successive Taylor terms make the polynomial match, starting from the centre.
- A NumPy operation on a million-element array runs fifty times faster than the equivalent Python loop,…