How do you express $\dfrac 1{1+x}$ as an infinite polynomial?

207 Views Asked by At

I have the function $\dfrac 1{1+x}$ which I want to express as an infinite polynomial. I believe the correct term is Taylor Series. How do I solve this problem?

5

There are 5 best solutions below

2
On

Because $1 - x + x^2 - x^3 + x^4 - \cdots = \dfrac {1}{1+x}$

It is sum of geometric series aka infinite polynomial.

0
On

Use the geometric series $$\frac{1}{1+x} = \frac{1}{1-(-x)} = \sum_{i=0}^n (-x)^n\quad\text{for}\quad|x|<1$$

7
On

Brute force Taylor anyone?

$$f^{(n)}(x)=\frac{d^n}{dx^n}\frac1{1+x}=\frac{n!(-1)^n}{(1+x)^{n+1}}$$

If you want a proof, use induction.

At $x=0$, we get

$$=n!(-1)^n$$

Putting this into Taylor's theorem:

$$\frac1{1+x}=\sum_{n=0}^\infty\frac{f^{(n)}(0)}{n!}x^n=\sum_{n=0}^\infty\frac{n!(-1)^n}{n!}x^n$$

$$\frac1{1+x}=\sum_{n=0}^\infty(-1)^nx^n$$

1
On

Let's assume such a polynomial exist so that $\frac 1{1+x} = \sum a_i x^i$

Then $1 = (1+x)\frac1{1+x} = \sum a_i x^i + \sum a_i x^{i+1} = a_0 + \sum (a_{i+ 1} + a_i)x^i$.

So $a_0 = 1$ and $a_{i} + a_{i-1} = 0; a_{i} = -a_{i-1} \forall i > 0$.

Inductively that means $a_i = 1$ if $i$ is even and $a_i = -1$ if $i $ is odd. Or $a_i = (-1)^i$.

So the polynomial is $\sum_{i=0}^{\infty}(-1)^ix^i$. This is the geometric series one learns about in calculus. It does require a caveat that unless $|x| < 1$ the infinite sum will not converge.

0
On

$$\frac1{1+x}$$

$$=\frac{1-x}{1-x^2}$$

$$=\frac{(1-x)(1+x^2)}{1-x^4}$$

$$=\frac{(1-x)(1+x^2)(1+x^4)}{1-x^8}$$

At the $n^{th}$ step, we have

$$=\frac{(1-x)\prod\limits_{k=1}^n (1+x^{2^k})}{1-x^{2^n}}$$

As $n\to\infty$ with $|x|<1$, this becomes

$$=1-x+x^2-x^+\dots+(-x)^{k+1}+\dots+$$