I'm attempting to find a series approximation to:
$$f(x)=\frac{1}{1-(1+x)^{-n}}$$
where $n\in\mathbb{N^+}$ and is a constant, and $x\in\mathbb{R}$ and $0<x<1$.
Using Wolfram Alpha, I noted the first order approximation is:
$$f(x)\approx\frac{1}{nx} + \frac{n+1}{2n}$$
With this goal post in mind, I went about trying to find the first order approximation for myself. The original formula has a singularity at $x=0$, so I figured I can't use the Taylor series formula directly. Instead, with the geometric series formula I found the following:
$$f(x)=\sum_{i=0}^\infty\frac{1}{(1+x)^{in}} $$
But I'm not sure how to proceed from here. Is there a trick I'm missing?
Looking around for a hint on how to proceed, I noticed that $f(x)$ has some similarities to mortgage monthly payments formula:
$$C(r)=\frac{r(1+r)^nP}{(1+r)^n-1}$$
where $P$ is the initial load size (principal), $r$ is the interest rate per month and $n$ is the number of payments (months). I found similar questions here and here, but it's still not clear to me what the initial steps are for finding the first order approximation given by Wolfram Alpha.
Any help would be much appreciated, even if it's just the first few steps towards the solution. Thanks.