∫Calc Practice

Taylor and Maclaurin polynomials

Problem 7.91 · hard

Find the Maclaurin polynomial of degree 4 for \( \displaystyle f(x) = \ln{\left(x + 1 \right)} \).
  1. p_n(x) = Σ f⁽ᵏ⁾(0)/k! · xᵏ, for k = 0 to n.
  2. \[ \left. \ln{\left(x + 1 \right)} \right|_{\substack{ x=0 }} = 0 \]
    f⁽0⁾(0).✓ Proved
  3. \[ \left. \frac{d}{d x} \ln{\left(x + 1 \right)} \right|_{\substack{ x=0 }} = 1 \]
    f⁽1⁾(0).✓ Proved
  4. \[ \left. \frac{d^{2}}{d x^{2}} \ln{\left(x + 1 \right)} \right|_{\substack{ x=0 }} = -1 \]
    f⁽2⁾(0).✓ Proved
  5. \[ \left. \frac{d^{3}}{d x^{3}} \ln{\left(x + 1 \right)} \right|_{\substack{ x=0 }} = 2 \]
    f⁽3⁾(0).✓ Proved
  6. \[ \left. \frac{d^{4}}{d x^{4}} \ln{\left(x + 1 \right)} \right|_{\substack{ x=0 }} = -6 \]
    f⁽4⁾(0).✓ Proved
  7. \[ \left(-6\right) x^{4} \cdot 1 \cdot \frac{1}{24} + 2 x^{3} \cdot 1 \cdot \frac{1}{6} - 1 x^{2} \cdot 1 \cdot \frac{1}{2} + x 1 = - \frac{x^{4}}{4} + \frac{x^{3}}{3} - \frac{x^{2}}{2} + x \]
    Assemble the polynomial.✓ Proved
Answer \( p_{4}(x) = - \frac{x^{4}}{4} + \frac{x^{3}}{3} - \frac{x^{2}}{2} + x \)

Lines: 6 proved, 1 not checked. The answer was also checked a second way, without looking at the solution. The explanation has not been reviewed yet.

The full receipt
LineStatusChecked byDetail
1Not checked—a sentence; read, not computed
2✓ Provedsympy 1.14.0simplify(lhs - rhs) reduced to 0
3✓ Provedsympy 1.14.0simplify(lhs - rhs) reduced to 0
4✓ Provedsympy 1.14.0simplify(lhs - rhs) reduced to 0
5✓ Provedsympy 1.14.0simplify(lhs - rhs) reduced to 0
6✓ Provedsympy 1.14.0simplify(lhs - rhs) reduced to 0
7✓ Provedsympy 1.14.0simplify(lhs - rhs) reduced to 0
answer, a second way✓ Checked independentlysympy 1.14.0 + mpmath 1.3.0sympy.series expands f on its own and matches

Proved: SymPy reduced the difference between the two sides to zero. Checked independently: a separate method, named above, confirmed it. Checked numerically: the two sides agree at every sampled point, which is evidence, not proof. Reviewed: a model or a person read it; that is all a sentence can have. Solution by generator:structured/taylor_polynomial, checked 2026-09-26 with SymPy 1.14.0.