Question
Induction proof for the n-th derivative of arctangent
Original question: 2 Prove by mathematical induction that, for all positive integers $n$, $$\frac{d^n}{dx^n}(\tan^{-1}x)=P_n(x)(1+x^2)^{-n},$$ where $P_n(x)$ is a polynomial of degree $n-1$.
Expert Verified Solution
Key takeaway: This proof is really about spotting the pattern, then showing it survives one more derivative. The polynomial part is there to absorb the messy algebra so the shape of the result stays clean.
We prove by mathematical induction that for all positive integers , where is a polynomial of degree .
Base case:
We know So the result holds with which is a polynomial of degree .
Inductive hypothesis
Assume that for some , where is a polynomial of degree .
Inductive step
Differentiate both sides:
=\frac{d}{dx}\left[P_n(x)(1+x^2)^{-n}\right].$$ Using the product rule, $$=P_n'(x)(1+x^2)^{-n}+P_n(x)\cdot(-n)(1+x^2)^{-n-1}(2x).$$ Factor out $(1+x^2)^{-(n+1)}$: $$=(1+x^2)^{-(n+1)}\left[P_n'(x)(1+x^2)-2nxP_n(x)\right].$$ Define $$P_{n+1}(x)=P_n'(x)(1+x^2)-2nxP_n(x).$$ Then $$\frac{d^{n+1}}{dx^{n+1}}(\tan^{-1}x)=P_{n+1}(x)(1+x^2)^{-(n+1)}.$$ Now check the degree of $P_{n+1}$. Since $P_n$ has degree $n-1$: - $P_n'$ has degree $n-2$, - multiplying by $(1+x^2)$ gives degree at most $n$, - $xP_n(x)$ also has degree $n$. So $P_{n+1}(x)$ is a polynomial of degree $n$. Therefore the statement holds for $n+1$. By induction, the result is true for all positive integers $n$. --- **Pitfalls the pros know** 👇 The easiest place to lose the thread is the degree count. After differentiating, the polynomial is not just whatever comes out of the product rule; you still need to justify that its degree is exactly one more than before. Another common mistake is forgetting to factor out $(1+x^2)^{-(n+1)}$ before naming the new polynomial. **What if the problem changes?** If you wanted a similar proof for $\ln(1+x^2)$ or $\arctan(ax)$, the structure is almost the same: write the $n$th derivative in a factored form, differentiate once more, and package the algebra into a new polynomial. For $\arctan(ax)$, an extra constant $a^n$ would appear in the derivative pattern because each differentiation brings down another factor of $a$ through the chain rule. `Tags`: mathematical induction, higher derivatives, polynomial degreeFAQ
Why does a polynomial appear in the formula for higher derivatives of arctan x?
Repeated differentiation creates more algebraic terms, and those terms can be grouped into a polynomial factor multiplying (1+x^2)^(-n).
What is the base case for the induction proof?
For n=1, d/dx(arctan x)=1/(1+x^2), which matches the required form with P1(x)=1.