Function: $1/(1-x)$
I've already discovered the following:
- (1)
Series[1/(1-x), {x,0,10}]: expand it centered at $x_0=0$, region $|x|<1$. - (2)
Series[1/(1-x), {x,Infinity,10}]: expand it centered at $x_0=0$, region $|x|>1$. - (3)
Series[1/(1-x), {x,2,10}]: expand it centered at $x_0=2$, region $|x-2|<1$.
Now, how can I do the following?
- (4) $1/(1-x)$, expand it centered at $x_0=2$, region $|x-2|>1$?
Series[1/(1 - x), {x, 2, 10}, Assumptions -> (Abs[x - 2] > 1)]but the result will be the same as withoutassumptions. – partial81 Feb 15 at 13:02Assumptions->Abs[x-2]>1? is this what you used for the first cases? – Nasser Feb 15 at 13:05