šŸŽ“ BookMCQ
← Back to 10. Infinite Series in Calculus

šŸ“ Taylor polynomials formula (35 MCQs)

šŸ“– From Calculus • 10. Infinite Series in Calculus • 35 questions available

What is Taylor polynomials formula?

The Taylor polynomial of degree nn for f(x)f(x) centered at x=ax=a is Pn(x)=āˆ‘k=0nf(k)(a)k!(xāˆ’a)kP_n(x) = \sum_{k=0}^{n} \frac{f^{(k)}(a)}{k!} (x-a)^k; it is the best polynomial approximation of degree nn near aa, and the error is given by the remainder term.

4
Easy
19
Medium
12
Hard

šŸ“ All Taylor polynomials formula MCQs

Q1. A student constructs the third-degree Taylor polynomial p3(x)p_3(x) for a function f(x)f(x) centered at x=0x=0. They correctly compute f(0), f'(0), and f''(0), but mistakenly calculate f'''(0) as double its true value. How does this specific error affect the approximation of f(0.1)f(0.1) versus f(2.0)f(2.0)?

A.The error magnitude is identical for both inputs because it is a constant coefficient error.
B.The error at x=2.0x=2.0 will be significantly larger than at x=0.1x=0.1 due to the cubic term's scaling factor. āœ…
C.The error at x=0.1x=0.1 will be larger because higher-order terms dominate near the center of expansion.
D.The error affects the concavity of the polynomial rather than the vertical displacement at specific points.
šŸ’” Difficulty: medium | āœ… Correct: B

šŸ“– Explanation: The third-degree Taylor polynomial includes the term \frac{f'''(0)}{3!}x^3. If f'''(0) is incorrect, the error introduced is proportional to x3x^3. For x=0.1x=0.1, x3=0.001x^3 = 0.001, making the error negligible. However, for x=2.0x=2.0, x3=8x^3 = 8, amplifying the coefficient error by a factor of 8000 relative to the smaller input. This demonstrates that errors in higher-order derivatives have a disproportionately catastrophic effect on approximation accuracy as the distance from the center of expansion increases, highlighting the local nature of Taylor approximations.

Q2. Consider two functions f(x)f(x) and g(x)g(x) where f(x)=g(x)+x4f(x) = g(x) + x^4. Both functions are approximated by their second-degree Taylor polynomials centered at x=0x=0. Which statement best describes the relationship between these polynomials and the original functions?

A.The polynomials are identical, and they approximate both functions with equal accuracy near zero. āœ…
B.The polynomials are identical, but p2(x)p_2(x) provides a better local approximation for f(x)f(x) than for g(x)g(x).
C.The polynomials are different because the x4x^4 term affects the second derivative at zero.
D.The polynomials are identical, but p2(x)p_2(x) provides a worse local approximation for f(x)f(x) than for g(x)g(x).
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: Since the difference between the functions is x4x^4, and the second-degree Taylor polynomial only utilizes derivatives up to order two, the term x4x^4 vanishes during the calculation of f(0), f'(0), and f''(0). Thus, p2(x)p_2(x) is identical for both. Furthermore, since the first non-zero neglected term in the Taylor series determines the leading order of the error, and both functions share the same lower-order behavior, the local approximation quality defined by the second-degree polynomial is effectively equivalent regarding the matched derivatives. The distinction only appears in higher-order remainders.

Q3. You are modeling a physical system using the Maclaurin polynomial for cos⁔(x)\cos(x). You require an approximation error strictly less than 10āˆ’610^{-6} for x∈[āˆ’0.5,0.5]x \in [-0.5, 0.5]. Using the Lagrange Error Bound, what is the minimum degree nn required, considering the alternating nature of the series?

A.n = 2
B.n = 3
C.n = 4 āœ…
D.n = 5
šŸ’” Difficulty: hard | āœ… Correct: C

šŸ“– Explanation: For cos⁔(x)\cos(x), the Maclaurin series is alternating. The error bound for an alternating series satisfying the Alternating Series Test is simply the magnitude of the first omitted term. For n=2n=2, the next term is x4/4!x^4/4!. At x=0.5x=0.5, this is 0.54/24ā‰ˆ0.00260.5^4/24 \approx 0.0026, which is too large. For n=4n=4, the polynomial includes the x4x^4 term (since the x3x^3 term is zero). The first omitted non-zero term is āˆ’x6/6!-x^6/6!. Evaluating 0.56/720ā‰ˆ2.17Ɨ10āˆ’70.5^6/720 \approx 2.17 \times 10^{-7}, which satisfies the 10āˆ’610^{-6} requirement. Note that p3(x)=p4(x)p_3(x) = p_4(x) for cosine, so technically degree 3 suffices algebraically, but standard error analysis often targets the even degree for cosine bounds; however, strictly speaking, the polynomial of degree 4 guarantees the bound via the next term test.

Q4. A graph displays a function f(x)f(x) and three curves labeled A, B, and C near x=ax=a. Curve A intersects f(a)f(a) but has a different slope. Curve B is tangent to f(x)f(x) at aa but curves in the opposite direction. Curve C matches both the slope and concavity of f(x)f(x) at aa. Identify the Taylor polynomials corresponding to these curves.

A.A is p0p_0, B is p1p_1, C is p2p_2 āœ…
B.A is p1p_1, B is p2p_2, C is p3p_3
C.A is p0p_0, B is p2p_2, C is p1p_1
D.A is p1p_1, B is p0p_0, C is p2p_2
šŸ’” Difficulty: easy | āœ… Correct: A

šŸ“– Explanation: By definition, the zeroth-degree Taylor polynomial p0(x)=f(a)p_0(x) = f(a) matches only the value, corresponding to Curve A. The first-degree polynomial p1(x)p_1(x) matches the value and the first derivative (slope), representing the tangent line; however, the prompt states B has the wrong concavity, implying it matches slope but fails curvature, consistent with a linear approximation or a mismatched quadratic. Wait, re-reading: Curve B is tangent (matches slope) but wrong concavity. This describes p1p_1 perfectly as it has no intrinsic concavity (linear). Curve C matches slope and concavity, defining p2p_2. Therefore, A corresponds to p0p_0, B to p1p_1, and C to p2p_2.

Q5. In deriving the Taylor polynomial for f(x)=ln⁔(1+x)f(x) = \ln(1+x) at x=0x=0, a student argues that since ln⁔(1)=0\ln(1) = 0, the constant term is zero, and thus the polynomial should start with the linear term. They then claim that because the function is undefined at x=āˆ’1x=-1, the radius of convergence must be exactly 1. Is this reasoning fully rigorous?

A.Yes, the singularity at -1 dictates the radius of convergence for the real Taylor series.
B.No, the radius of convergence is determined by the nearest singularity in the complex plane, which happens to be at -1, but the reasoning relies solely on real domain restrictions. āœ…
C.No, the radius of convergence is infinite because logarithms are smooth everywhere except at zero.
D.Yes, but only because the interval of convergence for ln(1+x) is (-1, 1].
šŸ’” Difficulty: medium | āœ… Correct: B

šŸ“– Explanation: While the conclusion that R=1R=1 is correct, the student's reasoning based solely on the real-valued domain restriction is incomplete. In complex analysis, the radius of convergence of a Taylor series centered at z0z_0 is the distance to the nearest singularity in the complex plane. For ln⁔(1+z)\ln(1+z), the branch point is indeed at z=āˆ’1z=-1, which is distance 1 from the origin. However, relying only on 'undefined at -1' ignores cases where functions are smooth on the real line but have limited radii due to complex singularities (e.g., 1/(1+x2)1/(1+x^2)). Thus, while the answer is right, the justification lacks the necessary theoretical depth regarding analytic continuation.

Q6. Suppose you approximate exe^x using its third-degree Maclaurin polynomial p3(x)p_3(x) on the interval [0,1][0, 1]. Without calculating the exact remainder, which of the following best explains why the maximum error occurs at x=1x=1 rather than at x=0x=0?

A.The remainder term Rn(x)R_n(x) involves ece^c where cc is between 0 and x; since exe^x is increasing, the bound is maximized at the right endpoint. āœ…
B.Taylor polynomials always have maximum error at the endpoints of the interval of interest.
C.The derivatives of exe^x decrease as x increases, causing accumulation of error.
D.The error is symmetric around the center of expansion, so x=1 is just arbitrarily chosen.
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: According to the Lagrange Error Bound, ∣Rn(x)āˆ£ā‰¤M(n+1)!∣xāˆ’x0∣n+1|R_n(x)| \leq \frac{M}{(n+1)!}|x-x_0|^{n+1}, where MM is the maximum of ∣f(n+1)(c)∣|f^{(n+1)}(c)| on the interval between x0x_0 and xx. For f(x)=exf(x)=e^x, every derivative is exe^x, which is strictly increasing. Therefore, for any x∈[0,1]x \in [0,1], the maximum value of the derivative on [0,x][0,x] occurs at c=xc=x. Consequently, the error bound function ex(n+1)!xn+1\frac{e^x}{(n+1)!}x^{n+1} is the product of two positive increasing functions on [0,1][0,1], guaranteeing that the worst-case error bound increases monotonically with xx, peaking at x=1x=1.

Q7. An engineer uses the second-order Taylor polynomial to approximate potential energy U(x)U(x) near a stable equilibrium point x0x_0. Why is the first-order term necessarily absent in this specific physical application, and what does the sign of the second-order coefficient imply?

A.The first derivative is zero at equilibrium; a positive second coefficient implies stability. āœ…
B.The first derivative is maximal at equilibrium; a negative second coefficient implies stability.
C.The first derivative is zero at equilibrium; a negative second coefficient implies stability.
D.The function is even, so all odd terms vanish regardless of equilibrium; the sign indicates force direction.
šŸ’” Difficulty: hard | āœ… Correct: A

šŸ“– Explanation: In physics, a stable equilibrium point x0x_0 is defined as a local minimum of the potential energy function U(x)U(x). By calculus, a local extremum requires U&#039;(x_0) = 0, eliminating the linear term U&#039;(x_0)(x-x_0) from the Taylor expansion. The behavior near equilibrium is dominated by the quadratic term \frac{U&#039;&#039;(x_0)}{2}(x-x_0)^2. For the point to be a minimum (stable), we must have U&#039;&#039;(x_0) > 0. If U&#039;&#039;(x_0) < 0, it would be a maximum (unstable equilibrium). Thus, the absence of the linear term is a consequence of equilibrium, and the positive quadratic coefficient confirms stability, linking mathematical Taylor coefficients directly to physical system properties.

Q8. Compare the computational efficiency of approximating sin⁔(0.1)\sin(0.1) using the Maclaurin series versus approximating sin⁔(89∘)\sin(89^\circ) using the same Maclaurin series. Which approach is superior and why?

A.Maclaurin is superior for both because it is centered at zero.
B.Maclaurin is efficient for 0.1 but inefficient for 89°; one should use a Taylor series centered at Ļ€/2\pi/2 for the latter. āœ…
C.Both require the same number of terms because sine is periodic.
D.Taylor series at π/2\pi/2 is better for 0.1 because derivatives are simpler.
šŸ’” Difficulty: medium | āœ… Correct: B

šŸ“– Explanation: The Maclaurin series for sin⁔(x)\sin(x) converges rapidly when xx is close to 0. For x=0.1x=0.1, very few terms are needed for high precision. However, 89āˆ˜ā‰ˆ1.5589^\circ \approx 1.55 radians is far from 0. Using the Maclaurin series here would require many more terms to achieve the same accuracy due to the slower decay of xn/n!x^n/n! for larger xx. Instead, expanding sin⁔(x)\sin(x) about x0=Ļ€/2x_0 = \pi/2 (where sin⁔(Ļ€/2)=1\sin(\pi/2)=1) transforms the problem into approximating cos⁔(xāˆ’Ļ€/2)\cos(x-\pi/2) near zero, restoring rapid convergence. This highlights the critical importance of selecting an expansion center close to the evaluation point for numerical efficiency.

Q9. A student attempts to find the fourth-degree Maclaurin polynomial for f(x)=sin⁔(x2)f(x) = \sin(x^2) by computing derivatives f&#039;(0), f&#039;&#039;(0), \dots, f^{(4)}(0) directly. Another student substitutes u=x2u=x^2 into the known series for sin⁔(u)\sin(u). Evaluate the validity and efficiency of these methods.

A.Direct differentiation is valid but computationally prone to error; substitution is valid and significantly more efficient. āœ…
B.Substitution is invalid because the chain rule changes the coefficients; direct differentiation is the only correct method.
C.Both methods yield different polynomials because substitution produces a series in x2x^2, not x.
D.Direct differentiation is faster because it avoids variable transformation complexities.
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: Both methods are mathematically valid and must yield the same result due to the uniqueness of Taylor series. However, direct differentiation of composite functions like sin⁔(x2)\sin(x^2) becomes exponentially complex due to repeated application of the chain and product rules. Substituting x2x^2 into the known series uāˆ’u3/6+…u - u^3/6 + \dots yields x2āˆ’x6/6+…x^2 - x^6/6 + \dots almost instantly. Note that for the *fourth-degree* polynomial, the substitution method immediately reveals that the term involving x4x^4 has a coefficient of zero (since the series contains only even powers of x2x^2, i.e., x2,x6,…x^2, x^6, \dots), whereas direct differentiation would require calculating up to the fourth derivative only to find it vanishes. Substitution is overwhelmingly superior.

Q10. Given the graph of the remainder function ∣Rn(x)∣|R_n(x)| for a Taylor approximation centered at x=0x=0, you observe that the error grows much faster for x>0x>0 than for x<0x<0 within the same absolute distance. What characteristic of the original function f(x)f(x) likely causes this asymmetry?

A.The function is odd.
B.The magnitude of the (n+1)-th derivative increases faster for positive x than for negative x. āœ…
C.The radius of convergence is different for positive and negative directions.
D.Taylor polynomials inherently favor negative inputs.
šŸ’” Difficulty: hard | āœ… Correct: B

šŸ“– Explanation: The Lagrange Error Bound states ∣Rn(x)āˆ£ā‰¤max⁔∣f(n+1)(c)∣(n+1)!∣x∣n+1|R_n(x)| \leq \frac{\max|f^{(n+1)}(c)|}{(n+1)!}|x|^{n+1}. Since ∣x∣n+1|x|^{n+1} is symmetric for ±x\pm x, any asymmetry in the error growth must arise from the derivative term max⁔∣f(n+1)(c)∣\max|f^{(n+1)}(c)|. If the error grows faster for x>0x>0, it implies that the magnitude of the relevant higher-order derivative is larger on the positive interval [0,x][0, x] than on the corresponding negative interval [x,0][x, 0]. For example, exe^x has derivatives that grow for x>0x>0 and decay for x<0x<0, causing precisely this asymmetric error profile. Radius of convergence is a property of the series limit, not the finite remainder asymmetry.

Q11. When approximating ∫01eāˆ’x2dx\int_0^1 e^{-x^2} dx using Taylor series, why is it generally preferred to expand the integrand and integrate term-by-term rather than finding the antiderivative's Taylor series first?

A.Because eāˆ’x2e^{-x^2} has no elementary antiderivative, making direct series integration the only viable analytic approach. āœ…
B.Integrating term-by-term reduces the degree of the polynomial, improving convergence.
C.The antiderivative's series has a smaller radius of convergence than the integrand's series.
D.Differentiation of the series would be required if we found the antiderivative first, introducing error.
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: The function eāˆ’x2e^{-x^2} is famous for lacking an elementary antiderivative. Therefore, one cannot symbolically integrate it to get a closed-form function F(x)F(x) and then expand F(x)F(x). The standard procedure is to expand eāˆ’x2e^{-x^2} as a power series āˆ‘(āˆ’1)nx2n/n!\sum (-1)^n x^{2n}/n!, which converges everywhere, and then integrate term-by-term to obtain a new series representation for the definite integral. This transforms an impossible symbolic integration problem into a manageable summation problem. While integrating term-by-term does increase the power (improving convergence slightly), the primary driver is the non-elementary nature of the integral itself.

Q12. A student claims that if the third-degree Taylor polynomial p3(x)p_3(x) for f(x)f(x) at x=ax=a is identically zero, then f(x)f(x) must be the zero function in some neighborhood of aa. Analyze this claim.

A.True; matching four derivatives to zero forces the function to be zero.
B.False; consider f(x)=(xāˆ’a)4f(x) = (x-a)^4, which has a zero cubic polynomial but is not identically zero. āœ…
C.False; Taylor polynomials only approximate functions and never equal them exactly.
D.True; unless the function is discontinuous at a.
šŸ’” Difficulty: medium | āœ… Correct: B

šŸ“– Explanation: The third-degree Taylor polynomial depends only on f(a), f&#039;(a), f&#039;&#039;(a), and f&#039;&#039;&#039;(a). If all these are zero, p3(x)≔0p_3(x) \equiv 0. However, this provides no information about higher-order derivatives. The function f(x)=(xāˆ’a)4f(x) = (x-a)^4 has f(a)=f&#039;(a)=f&#039;&#039;(a)=f&#039;&#039;&#039;(a)=0, so its third-degree Taylor polynomial is indeed zero. Yet, f(x)f(x) is clearly not the zero function for x≠ax \neq a. Even stronger counterexamples exist, such as f(x)=eāˆ’1/(xāˆ’a)2f(x) = e^{-1/(x-a)^2} (with f(a)=0f(a)=0), which has all derivatives zero at aa but is non-zero elsewhere. Thus, a vanishing Taylor polynomial of finite degree does not imply the function vanishes.

Q13. In numerical analysis, why might one prefer a PadĆ© approximant over a Taylor polynomial for approximating f(x)=11āˆ’xf(x) = \frac{1}{1-x} near x=0x=0, despite Taylor polynomials being the standard introduction?

A.PadĆ© approximants can capture pole behavior and often have larger effective radii of convergence. āœ…
B.Taylor polynomials cannot represent rational functions.
C.PadƩ approximants are easier to compute than Taylor polynomials.
D.Taylor polynomials diverge for all x ≠ 0 for this function.
šŸ’” Difficulty: hard | āœ… Correct: A

šŸ“– Explanation: The Taylor series for 1/(1āˆ’x)1/(1-x) is the geometric series āˆ‘xn\sum x^n, which diverges for ∣xāˆ£ā‰„1|x| \geq 1. A PadĆ© approximant represents the function as a ratio of polynomials P(x)/Q(x)P(x)/Q(x). For 1/(1āˆ’x)1/(1-x), the PadĆ© approximant of order [0/1] is exactly 1/(1āˆ’x)1/(1-x), capturing the pole at x=1x=1 perfectly. Even for functions where the exact form is unknown, PadĆ© approximants often provide accurate approximations beyond the radius of convergence of the Taylor series and can model singularities that polynomials cannot. Taylor polynomials, being polynomials, cannot exhibit vertical asymptotes and thus fail qualitatively near poles, whereas rational approximants succeed.

Q14. You are given that f(x)f(x) is an even function. Without computing derivatives, what can you definitively conclude about its Maclaurin polynomial pn(x)p_n(x)?

A.It contains only even powers of x. āœ…
B.It contains only odd powers of x.
C.It is identically zero.
D.It alternates between even and odd powers depending on n.
šŸ’” Difficulty: easy | āœ… Correct: A

šŸ“– Explanation: An even function satisfies f(āˆ’x)=f(x)f(-x) = f(x). Differentiating this identity shows that f&#039;(-x) = -f&#039;(x) (odd), f&#039;&#039;(-x) = f&#039;&#039;(x) (even), and generally f(k)(0)=0f^{(k)}(0) = 0 for all odd kk because an odd function evaluated at zero must be zero (assuming continuity/differentiability). Since the Maclaurin polynomial coefficients are f(k)(0)/k!f^{(k)}(0)/k!, all coefficients for odd powers of xx vanish. Therefore, the Maclaurin polynomial of an even function consists exclusively of even-powered terms. This symmetry property saves significant computation time and serves as a useful check for calculation errors.

Q15. Consider the approximation of 1+x\sqrt{1+x} using the binomial series. A student truncates after the linear term 1+x/21 + x/2. For x=0.01x=0.01, the actual value is approximately 1.0049875. The approximation gives 1.005. What is the primary source of this discrepancy?

A.Round-off error from calculator limitations.
B.Truncation error from omitting the quadratic and higher-order terms. āœ…
C.The binomial series is invalid for x=0.01.
D.Error in the linear coefficient derivation.
šŸ’” Difficulty: easy | āœ… Correct: B

šŸ“– Explanation: The discrepancy is 1.005āˆ’1.0049875ā‰ˆ0.00001251.005 - 1.0049875 \approx 0.0000125. This is a classic example of truncation error, which arises when an infinite series is approximated by a finite partial sum. The next term in the binomial expansion of (1+x)1/2(1+x)^{1/2} is (1/2)(āˆ’1/2)2!x2=āˆ’x2/8\frac{(1/2)(-1/2)}{2!}x^2 = -x^2/8. For x=0.01x=0.01, this term is āˆ’0.0001/8=āˆ’0.0000125-0.0001/8 = -0.0000125, which exactly accounts for the observed difference. Round-off error relates to floating-point precision, not series termination. The binomial series is valid for ∣x∣<1|x|<1, so validity is not the issue. The linear coefficient 1/21/2 is correct.

Q16. Why is the Taylor polynomial for f(x)=∣x∣f(x) = |x| undefined at x=0x=0, and what implication does this have for modeling physical systems with absolute value potentials?

A.The function is continuous but not differentiable at 0; Taylor models cannot capture cusp singularities. āœ…
B.The function is discontinuous at 0; Taylor series require continuity.
C.The derivatives exist but are infinite at 0.
D.Taylor polynomials can be constructed but converge to the wrong function.
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: The absolute value function ∣x∣|x| has a sharp corner (cusp) at x=0x=0, meaning the left-hand derivative (-1) and right-hand derivative (+1) do not agree. Since the first derivative does not exist at the expansion center, the Taylor polynomial cannot be formed. In physical modeling, this signifies that smooth polynomial approximations fail to capture non-smooth phenomena like friction transitions or idealized hard-wall potentials at the singularity. One must either use piecewise definitions, generalized functions, or alternative basis sets capable of representing non-differentiable features. This limitation underscores that Taylor series are inherently tools for smooth (analytic or at least CāˆžC^\infty) local approximation.

Q17. A researcher computes the 5th-degree Taylor polynomial for f(x)f(x) at x=0x=0 and finds it equals x3āˆ’x5/6x^3 - x^5/6. They conclude that f(x)f(x) must be sin⁔(x)\sin(x). Is this conclusion logically sound?

A.Yes, because Taylor series representations are unique.
B.No, infinitely many functions share the same finite Taylor polynomial. āœ…
C.Yes, provided f(x) is analytic.
D.No, because the polynomial should include even terms.
šŸ’” Difficulty: medium | āœ… Correct: B

šŸ“– Explanation: Uniqueness of Taylor series applies to the *infinite* series representation of an analytic function. However, a *finite* Taylor polynomial only encodes information about derivatives up to a specific order. Any function of the form sin⁔(x)+x6g(x)\sin(x) + x^6 g(x) (where gg is sufficiently differentiable) will have the exact same 5th-degree Taylor polynomial as sin⁔(x)\sin(x). For instance, f(x)=sin⁔(x)+x6f(x) = \sin(x) + x^6 or f(x)=sin⁔(x)+eāˆ’1/x2f(x) = \sin(x) + e^{-1/x^2} both match the given polynomial. Therefore, observing a finite polynomial does not uniquely identify the generating function; it only constrains its local jet at the expansion point. Additional global or structural information is needed to confirm identity.

Q18. When using Taylor polynomials to solve the differential equation y&#039; = y with y(0)=1y(0)=1 via successive approximation, one generates polynomials pn(x)p_n(x). How does this process relate to the standard Maclaurin series for exe^x?

A.The iterative process reconstructs the Maclaurin series term-by-term, confirming e^x as the solution. āœ…
B.The process generates a different series that converges faster than the Maclaurin series.
C.The process fails because differential equations cannot be solved with polynomials.
D.The process yields the Maclaurin series only if one assumes convergence beforehand.
šŸ’” Difficulty: hard | āœ… Correct: A

šŸ“– Explanation: Picard iteration or successive substitution for y&#039; = y, y(0)=1 starts with y0(x)=1y_0(x)=1. Then yn+1(x)=1+∫0xyn(t)dty_{n+1}(x) = 1 + \int_0^x y_n(t) dt. This yields y1=1+xy_1 = 1+x, y2=1+x+x2/2y_2 = 1+x+x^2/2, etc. Each iteration adds the next term of the Maclaurin series for exe^x. This constructive proof demonstrates that the Taylor series is not merely a post-hoc approximation but emerges naturally from the differential equation's structure. It validates the series solution method and shows that the Maclaurin series for exe^x is the unique fixed point of the integral operator associated with the ODE, linking analytical series methods directly to existence-uniqueness theory.

Q19. You are analyzing the error of the Taylor approximation for f(x)=ln⁔(x)f(x) = \ln(x) centered at x=1x=1. Why is it meaningless to discuss the error at x=0x=0 using the standard Lagrange Remainder formula?

A.The function and its derivatives are undefined at x=0, violating the theorem's hypotheses. āœ…
B.The error at x=0 is infinite, so the formula yields infinity.
C.The Lagrange formula only applies to trigonometric functions.
D.The interval [0,1] contains the center, so error is automatically zero.
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: The Lagrange Remainder Theorem requires that ff be (n+1)(n+1)-times differentiable on an open interval containing both the center x0x_0 and the evaluation point xx. For ln⁔(x)\ln(x) centered at 1, the domain is (0,āˆž)(0, \infty). The point x=0x=0 lies on the boundary of the domain where ln⁔(x)\ln(x) and all its derivatives blow up to negative infinity. Since ff is not differentiable at 0, the remainder formula cannot be applied on any interval including 0. This reflects the fundamental fact that the Taylor series for ln⁔(x)\ln(x) at 1 has radius of convergence 1, and the singularity at 0 represents the barrier beyond which the polynomial approximation ceases to be valid or bounded.

Q20. A student observes that for f(x)=11+x2f(x) = \frac{1}{1+x^2}, the Maclaurin series 1āˆ’x2+x4āˆ’ā€¦1 - x^2 + x^4 - \dots diverges at x=2x=2, even though the function itself is perfectly smooth and well-defined at x=2x=2. Explain this apparent paradox.

A.The radius of convergence is limited by complex singularities at ±i, not real-axis behavior. āœ…
B.The function is not analytic at x=2 despite appearing smooth.
C.Maclaurin series only converge for |x| < 1 for all rational functions.
D.The student miscalculated the series; it should converge everywhere.
šŸ’” Difficulty: hard | āœ… Correct: A

šŸ“– Explanation: This is a classic illustration of the distinction between real smoothness and complex analyticity. On the real line, 1/(1+x2)1/(1+x^2) is CāˆžC^\infty everywhere. However, the radius of convergence of a Taylor series centered at 0 is determined by the distance to the nearest singularity in the complex plane. The denominator vanishes at x=±ix = \pm i, which are distance 1 from the origin. Thus, R=1R=1. Beyond this disk, the power series diverges regardless of the function's real-valued behavior. This demonstrates that real-variable intuition about 'smoothness' is insufficient for predicting series convergence; one must consider the function's analytic structure in the complex domain.

Q21. In a computer graphics application, you need to evaluate sin⁔(x)\sin(x) millions of times per second. Why might a minimax polynomial approximation be preferred over a truncated Taylor series of the same degree?

A.Minimax polynomials minimize the maximum error over the entire interval, whereas Taylor optimizes only locally. āœ…
B.Taylor series are computationally more expensive to evaluate.
C.Minimax polynomials have higher degree than Taylor series for the same accuracy.
D.Taylor series cannot be implemented in hardware.
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: Taylor polynomials are designed to match derivatives at a single point, resulting in excellent accuracy near that point but potentially large errors at the interval boundaries. For applications requiring uniform accuracy over a fixed range (like graphics or embedded systems), minimax (Chebyshev) approximation is superior because it distributes the error evenly across the interval, minimizing the worst-case deviation. A degree-n minimax polynomial typically achieves significantly lower maximum error over [a,b][a,b] than the degree-n Taylor polynomial. While Taylor series are theoretically fundamental, practical numerical implementation favors equioscillating error distributions for robustness and guaranteed precision bounds across the entire operational domain.

Q22. Suppose f(x)f(x) has a Taylor series at x=0x=0 with radius of convergence R=3R=3. If you construct the Taylor series for f&#039;(x) at x=0x=0, what is its radius of convergence?

A.R = 3 āœ…
B.R = 2
C.R = 4
D.Cannot be determined without knowing f(x)
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: A fundamental theorem of power series states that differentiation and integration do not change the radius of convergence. If āˆ‘anxn\sum a_n x^n has radius RR, then āˆ‘nanxnāˆ’1\sum n a_n x^{n-1} also has radius RR. The behavior at the endpoints may change (convergence might be lost or gained at the boundary), but the radius itself remains invariant. This is because the limit superior defining RR depends on the asymptotic growth rate of coefficients, and multiplying by nn does not alter this exponential growth rate. Thus, knowing R=3R=3 for ff immediately tells us R=3R=3 for f&#039;, f&#039;&#039;, and ∫f\int f.

Q23. A physics student models air resistance force as F(v)=kv2F(v) = kv^2. They propose using a first-order Taylor polynomial around v=0v=0 to simplify calculations for low-speed motion. What is the fundamental flaw in this modeling choice?

A.The first derivative at v=0 is zero, yielding the trivial approximation Fā‰ˆ0, losing all drag information. āœ…
B.Air resistance is never quadratic at low speeds.
C.Taylor polynomials cannot model forces.
D.The second-order term is required for dimensional consistency.
šŸ’” Difficulty: hard | āœ… Correct: A

šŸ“– Explanation: For F(v)=kv2F(v) = kv^2, we have F(0)=0F(0)=0 and F&#039;(v)=2kv \Rightarrow F&#039;(0)=0. The first-order Taylor polynomial is p_1(v) = F(0) + F&#039;(0)v = 0. This approximation suggests there is no drag force at all for small velocities, which is physically useless and mathematically degenerate for this specific function. To capture the quadratic drag, one must use at least the second-order polynomial p2(v)=kv2p_2(v) = kv^2. This illustrates a critical modeling pitfall: blindly applying linearization to functions with vanishing first derivatives at the operating point yields trivial results. One must inspect the derivative structure before choosing approximation order.

Q24. When approximating cos⁔(x)\cos(x) near x=0x=0, why is the second-degree Taylor polynomial p2(x)=1āˆ’x2/2p_2(x) = 1 - x^2/2 actually identical to the third-degree polynomial p3(x)p_3(x)?

A.Because cos(x) is an even function, all odd-powered coefficients are zero. āœ…
B.Because the third derivative of cos(x) is nonzero at zero.
C.Because Taylor polynomials always skip odd degrees for trigonometric functions.
D.It is a coincidence specific to x=0.
šŸ’” Difficulty: easy | āœ… Correct: A

šŸ“– Explanation: The Maclaurin series for cos⁔(x)\cos(x) contains only even powers of xx: 1āˆ’x2/2!+x4/4!āˆ’ā€¦1 - x^2/2! + x^4/4! - \dots. The coefficient of x3x^3 is f&#039;&#039;&#039;(0)/3!. Since f&#039;&#039;&#039;(x) = \sin(x) and sin⁔(0)=0\sin(0)=0, the cubic term vanishes. More fundamentally, because cos⁔(x)\cos(x) is even (cos⁔(āˆ’x)=cos⁔(x)\cos(-x)=\cos(x)), its Taylor expansion cannot contain odd powers, as odd powers would break the symmetry. Therefore, p3(x)=p2(x)+0ā‹…x3=p2(x)p_3(x) = p_2(x) + 0 \cdot x^3 = p_2(x). This means that for cosine, using a cubic polynomial offers no additional accuracy over the quadratic one; one gains nothing until the quartic term.

Q25. You are tasked with verifying a colleague's Taylor polynomial calculation for f(x)=e2xf(x) = e^{2x}. They present p2(x)=1+2x+2x2p_2(x) = 1 + 2x + 2x^2. Without recomputing derivatives, how can you quickly verify this is correct using known series?

A.Substitute 2x into the standard e^u series: 1 + (2x) + (2x)^2/2! = 1 + 2x + 2x^2. āœ…
B.Check if f(0)=1, f'(0)=2, f''(0)=4; the polynomial matches these values.
C.Differentiate the polynomial twice and evaluate at zero.
D.There is no shortcut; full derivative verification is mandatory.
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: Leveraging known Maclaurin series through substitution is a powerful verification and computation tool. The standard series for eue^u is āˆ‘un/n!\sum u^n/n!. Replacing uu with 2x2x gives 1+(2x)+(2x)2/2!+⋯=1+2x+4x2/2+⋯=1+2x+2x2+…1 + (2x) + (2x)^2/2! + \dots = 1 + 2x + 4x^2/2 + \dots = 1 + 2x + 2x^2 + \dots. This matches the colleague's result instantly. This method is not only faster than computing derivatives via chain rule but also less error-prone. It relies on the uniqueness of power series representations: if a valid series manipulation produces a power series for ff, it must be the Taylor series. This exemplifies efficient mathematical practice over brute-force computation.

Q26. In the context of special relativity, the Lorentz factor is γ=(1āˆ’v2/c2)āˆ’1/2\gamma = (1-v^2/c^2)^{-1/2}. Expanding this as a Taylor series in v/cv/c yields the Newtonian kinetic energy as the leading correction. What does the failure of this series at v=cv=c signify physically?

A.The series divergence at v=c corresponds to the physical impossibility of massive objects reaching light speed. āœ…
B.The Taylor series is mathematically flawed for relativistic equations.
C.Newtonian mechanics is valid at all speeds; the series failure is purely mathematical.
D.The expansion should be done in c/v instead.
šŸ’” Difficulty: hard | āœ… Correct: A

šŸ“– Explanation: The binomial expansion of (1āˆ’u)āˆ’1/2(1-u)^{-1/2} converges only for ∣u∣<1|u|<1. Here u=(v/c)2u=(v/c)^2, so convergence requires v<cv<c. At v=cv=c, the series diverges, mirroring the physical reality that Ī³ā†’āˆž\gamma \to \infty as v→cv \to c, requiring infinite energy to accelerate a massive particle to light speed. The mathematical singularity of the Taylor series at the radius boundary is not a defect but a feature: it encodes the fundamental causal structure of spacetime. This deep correspondence between analytic properties of series expansions and physical limits demonstrates how mathematical formalism can reflect ontological constraints in theoretical physics.

Q27. A student calculates the Taylor polynomial for f(x)=x3f(x) = x^3 centered at x=1x=1 and obtains p3(x)=1+3(xāˆ’1)+3(xāˆ’1)2+(xāˆ’1)3p_3(x) = 1 + 3(x-1) + 3(x-1)^2 + (x-1)^3. They are confused because this looks nothing like x3x^3. How should this be explained?

A.The polynomial is correct; it is simply x^3 expressed in the basis {(x-1)^k} rather than {x^k}. āœ…
B.The student made an algebraic error in expansion.
C.Taylor polynomials for cubics are always approximations, never exact.
D.The center x=1 was a poor choice for this function.
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: Taylor polynomials represent functions in the shifted monomial basis {(xāˆ’a)k}\{(x-a)^k\}. For a polynomial of degree nn, its Taylor polynomial of degree ≄n\geq n centered at any point is exactly equal to the original function, just rewritten. Expanding 1+3(xāˆ’1)+3(xāˆ’1)2+(xāˆ’1)31 + 3(x-1) + 3(x-1)^2 + (x-1)^3 using binomial theorem recovers x3x^3 perfectly. The student's confusion stems from expecting the standard monomial form x3x^3 rather than recognizing that x3x^3 and its Taylor expansion at 1 are the same mathematical object in different coordinate representations. This reinforces that Taylor series for polynomials are exact identities, not approximations, when carried to sufficient degree.

Q28. Why is it generally unsafe to use high-degree Taylor polynomials (e.g., n=20) for approximating functions over wide intervals, even if the series theoretically converges?

A.High-degree polynomials exhibit Runge-like oscillations near interval endpoints due to numerical instability and coefficient sensitivity. āœ…
B.Taylor polynomials of high degree always diverge.
C.Computers cannot handle factorials beyond n=10.
D.The Lagrange error bound becomes infinite for high n.
šŸ’” Difficulty: hard | āœ… Correct: A

šŸ“– Explanation: While Taylor series converge analytically within their radius, finite high-degree Taylor polynomials can suffer from severe numerical issues. Near the edges of the interval, cancellation errors between large alternating terms can destroy precision. Additionally, the conditioning of polynomial evaluation worsens with degree. Unlike Chebyshev or minimax approximations which are optimized for uniform error, Taylor polynomials concentrate accuracy at the center, leaving the periphery vulnerable to oscillatory artifacts and amplified round-off. For wide intervals, orthogonal polynomial expansions or piecewise low-degree approximations are numerically superior. This distinction between theoretical convergence and practical numerical stability is crucial in scientific computing.

Q29. Given f(x)=∫0xsin⁔(t2)dtf(x) = \int_0^x \sin(t^2) dt, explain why finding the Maclaurin series for f(x)f(x) by integrating the series for sin⁔(t2)\sin(t^2) is preferable to differentiating f(x)f(x) repeatedly.

A.Differentiating f(x) yields sin(x^2), whose higher derivatives become increasingly complex; integration of the known series is straightforward. āœ…
B.The function f(x) is not differentiable at x=0.
C.Integration always produces more accurate series than differentiation.
D.The series for sin(t^2) does not exist.
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: Directly computing Taylor coefficients via f(n)(0)/n!f^{(n)}(0)/n! would require differentiating ∫0xsin⁔(t2)dt\int_0^x \sin(t^2)dt repeatedly. The first derivative is sin⁔(x2)\sin(x^2), the second is 2xcos⁔(x2)2x\cos(x^2), the third involves products and chains that grow combinatorially complex. Conversely, sin⁔(u)=āˆ‘(āˆ’1)nu2n+1/(2n+1)!\sin(u) = \sum (-1)^n u^{2n+1}/(2n+1)!. Substituting u=t2u=t^2 gives sin⁔(t2)=āˆ‘(āˆ’1)nt4n+2/(2n+1)!\sin(t^2) = \sum (-1)^n t^{4n+2}/(2n+1)!. Integrating term-by-term yields f(x)=āˆ‘(āˆ’1)nx4n+3/[(4n+3)(2n+1)!]f(x) = \sum (-1)^n x^{4n+3}/[(4n+3)(2n+1)!] effortlessly. This exemplifies a key strategy: when a function is defined as an integral of a known series-expansible function, integrate the series rather than differentiate the integral. It transforms a hard calculus problem into simple algebra.

Q30. A multiple-choice question asks for the third-degree Maclaurin polynomial of f(x)=tan⁔(x)f(x) = \tan(x). A student selects x+x3/3x + x^3/3. Another selects xāˆ’x3/6x - x^3/6. Which is correct and why?

A.x + x^3/3 is correct because tan(x) = sin(x)/cos(x) ā‰ˆ (x - x^3/6)/(1 - x^2/2) ā‰ˆ x + x^3/3. āœ…
B.x - x^3/6 is correct because it matches the sine series.
C.Both are incorrect; tan(x) has no cubic term.
D.x + x^3/3 is correct because the derivative of tan(x) at 0 is 1 and the third derivative is 2.
šŸ’” Difficulty: hard | āœ… Correct: A

šŸ“– Explanation: Many students incorrectly assume tan⁔(x)\tan(x) shares sine's series because both are odd and start with xx. However, tan⁔(x)=sin⁔(x)/cos⁔(x)\tan(x) = \sin(x)/\cos(x). Performing polynomial division: (xāˆ’x3/6+… )/(1āˆ’x2/2+… )ā‰ˆ(xāˆ’x3/6)(1+x2/2)ā‰ˆx+x3/2āˆ’x3/6=x+x3/3(x - x^3/6 + \dots) / (1 - x^2/2 + \dots) \approx (x - x^3/6)(1 + x^2/2) \approx x + x^3/2 - x^3/6 = x + x^3/3. Alternatively, f&#039;(x)=\sec^2 x \Rightarrow f&#039;(0)=1; f&#039;&#039;&#039;(x) = 2\sec^4 x + 4\sec^2 x \tan^2 x \Rightarrow f&#039;&#039;&#039;(0)=2. So coefficient is 2/3!=1/32/3! = 1/3. The distractor xāˆ’x3/6x-x^3/6 tests the common misconception that tangent and sine have identical low-order behavior. Correct derivation requires either division or careful differentiation.

Q31. In error analysis, the Lagrange remainder Rn(x)R_n(x) involves an unknown cc between x0x_0 and xx. Why is this not a practical obstacle for establishing error bounds?

A.We replace f^(n+1)(c) with its maximum absolute value M on the interval, yielding a guaranteed upper bound. āœ…
B.We solve for c exactly using the Mean Value Theorem.
C.The value of c is always the midpoint of the interval.
D.The remainder term is negligible for all practical purposes.
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: The power of the Lagrange Error Bound lies in converting an unknown quantity into a computable bound. While cc is unknown, if we can find M=max⁔z∈I∣f(n+1)(z)∣M = \max_{z \in I} |f^{(n+1)}(z)| on the interval II between x0x_0 and xx, then ∣Rn(x)āˆ£ā‰¤M∣xāˆ’x0∣n+1/(n+1)!|R_n(x)| \leq M|x-x_0|^{n+1}/(n+1)! holds for all possible cc. We don't need to know cc; we only need to bound the derivative. For functions like sine, cosine, or exponentials on bounded intervals, finding MM is straightforward. This transforms the existential quantifier ('there exists c') into a universal guarantee ('error is at most...'), making the theorem practically useful for rigorous numerical certification.

Q32. Consider the function f(x)=eāˆ’1/x2f(x) = e^{-1/x^2} for x≠0x \neq 0 and f(0)=0f(0)=0. Its Maclaurin series is identically zero. What does this imply about the function's analyticity at x=0?

A.The function is smooth (Cāˆž) but not analytic at x=0. āœ…
B.The function is discontinuous at x=0.
C.The Maclaurin series calculation was performed incorrectly.
D.The function is analytic but equals zero everywhere.
šŸ’” Difficulty: hard | āœ… Correct: A

šŸ“– Explanation: This is the canonical counterexample in analysis. All derivatives of eāˆ’1/x2e^{-1/x^2} at 0 exist and equal 0, so the Taylor series is 0+0x+0x2+⋯≔00 + 0x + 0x^2 + \dots \equiv 0. However, f(x)>0f(x) > 0 for all x≠0x \neq 0. Thus, the Taylor series does not converge to the function in any neighborhood of 0. By definition, a function is analytic at a point if its Taylor series converges to the function in some open interval around that point. Since this fails, ff is CāˆžC^\infty but not analytic at 0. This demonstrates that infinite differentiability is strictly weaker than analyticity, a subtle but crucial distinction in advanced calculus.

Q33. When approximating ln⁔(1.1)\ln(1.1), why is it better to use the series for ln⁔((1+x)/(1āˆ’x))\ln((1+x)/(1-x)) with appropriate x rather than the direct Maclaurin series for ln⁔(1+u)\ln(1+u) with u=0.1?

A.The transformed series converges as x^(2n+1), requiring fewer terms for the same accuracy compared to u^n convergence. āœ…
B.The direct series diverges for u=0.1.
C.The transformed series has simpler coefficients.
D.There is no advantage; both converge equally fast.
šŸ’” Difficulty: hard | āœ… Correct: A

šŸ“– Explanation: For ln⁔(1.1)\ln(1.1), direct series uses u=0.1u=0.1, converging as 0.1n0.1^n. The transformed series ln⁔((1+x)/(1āˆ’x))=2(x+x3/3+x5/5+… )\ln((1+x)/(1-x)) = 2(x + x^3/3 + x^5/5 + \dots) requires solving (1+x)/(1āˆ’x)=1.1⇒x=1/21ā‰ˆ0.0476(1+x)/(1-x) = 1.1 \Rightarrow x = 1/21 \approx 0.0476. This series converges as x2n+1ā‰ˆ(0.0476)2n+1x^{2n+1} \approx (0.0476)^{2n+1}. Since 0.04763ā‰ˆ10āˆ’40.0476^3 \approx 10^{-4} vs 0.13=10āˆ’30.1^3 = 10^{-3}, the transformed series achieves each additional digit of accuracy in roughly half the terms. Historically, this was crucial for hand-computation of logarithm tables. It exemplifies how algebraic manipulation of series arguments can dramatically accelerate convergence, a technique still relevant in algorithm design.

Q34. A student argues that since the Taylor polynomial pn(x)p_n(x) matches f(x)f(x) and its first n derivatives at x0x_0, the graphs of ff and pnp_n must intersect only at x0x_0. Provide a counterexample to refute this.

A.f(x) = sin(x), p_3(x) = x - x^3/6 intersect at x=0 and other points near zero. āœ…
B.Taylor polynomials never intersect the original function except at the center.
C.The statement is actually true for all analytic functions.
D.Intersection points depend solely on the radius of convergence.
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: Matching derivatives at a point ensures tangency of high order but does not prevent crossings elsewhere. For f(x)=sin⁔(x)f(x)=\sin(x) and p3(x)=xāˆ’x3/6p_3(x)=x-x^3/6, they intersect whenever sin⁔(x)=xāˆ’x3/6\sin(x) = x-x^3/6. Besides x=0x=0, numerical solution shows intersections near xā‰ˆĀ±1.89x \approx \pm 1.89 (within the region where the cubic approximation is reasonable). In fact, for oscillatory functions, the polynomial approximation will typically cross the function multiple times near the expansion center as it attempts to match curvature. The condition f(k)(x0)=pn(k)(x0)f^{(k)}(x_0)=p_n^{(k)}(x_0) constrains local behavior infinitesimally but imposes no global restriction on intersection count.

Q35. In the derivation of the binomial series for (1+x)m(1+x)^m, why is the restriction ∣x∣<1|x|<1 necessary when m is not a non-negative integer?

A.The ratio test yields limit |x|, so convergence requires |x|<1; at |x|=1, behavior depends on m. āœ…
B.The function (1+x)^m is undefined for |x|≄1.
C.Binomial coefficients become zero for |x|≄1.
D.The series always diverges for |x|≄1 regardless of m.
šŸ’” Difficulty: medium | āœ… Correct: A

šŸ“– Explanation: Applying the ratio test to (mn)xn\binom{m}{n}x^n gives ∣an+1an∣=∣māˆ’nn+1xāˆ£ā†’āˆ£x∣|\frac{a_{n+1}}{a_n}| = |\frac{m-n}{n+1}x| \to |x| as nā†’āˆžn \to \infty. Thus, absolute convergence requires ∣x∣<1|x|<1. At ∣x∣=1|x|=1, the ratio test is inconclusive, and convergence depends delicately on mm: for m>0m>0, it converges absolutely at both endpoints; for āˆ’1<m<0-1<m<0, conditionally at x=1x=1 and diverges at x=āˆ’1x=-1; for mā‰¤āˆ’1m \leq -1, diverges at both. The restriction ∣x∣<1|x|<1 is therefore the universal safe zone guaranteed by the ratio test, while endpoint analysis requires separate treatment. This nuanced convergence behavior distinguishes general binomial series from polynomial cases.

šŸ”— Related Topics (MCQs)