2

Could someone explain how I calculate these summations? I'm using upper - lower + 1.

a) $\displaystyle\sum_{i=2}^{n-1} 1$

b) $\displaystyle\sum_{i=2}^{n-1} i$

So for (a) I have: $$ (n-1) -2 +1)1 = -1n - 1. $$

For (b) I have: $$ ((n-1) -2 +1)2 = -2n -1. $$

Are these calculations correct?

JTK
  • 137

2 Answers2

2

For a). You go from $2$ to $n-1$ and add each time the value $1$. Thus you are summing up $$(n-1)-1$$ terms each equal to 1. Therefore $$\sum_{i=2}^{n-1}1=(n-2)\cdot1=n-2$$ (plug in some values of $n$. f.e. $n=3, n=4$ etc. to verify that this is correct.

For b). On way to do it is to use the well known formula of the sum of the first $n$ consequtive integers that is equal to $n(n+1)/2$. Now, you can write the given sum as $$\sum_{i=2}^{n-1}i=\left(\sum_{i=2}^{n-1}i\right)\pm1\pm n=\sum_{i=1}^{n}i-(1+n)$$ and use the above formula to obtain that $$\sum_{i=2}^{n-1}=\sum_{i=1}^{n}i-(1+n)=\frac{n(n+1)}{2}-(n+1)=(n+1)\left(\frac{n}{2}-1\right)$$

Jimmy R.
  • 35,868
1

Some of your confusion seems to be rooted in understanding how to work with the bounds of the sum effectively. Fortunately, we can calculate both of your sums rather easily by noting that $$ \sum_{i=1}^n 1=n\tag{1} $$ and $$ \sum_{i=1}^n i=\frac{n(n+1)}{2}.\tag{2} $$ The proofs for $(1)$ and $(2)$ are easy to come by; for example, see here and here, respectively.

Can you see the difference between the sums in $(1)$ and $(2)$ and your sums? In the above sums, we are summing from $i=1$ to $n$, whereas for your sums you are only summing from $i=2$ to $n-1$. Important: The only difference between the sums I listed above and the ones you are trying to compute is that your sums essentially omit the first and last terms in $(1)$ and $(2)$. That is, $$ \sum_{i=2}^{n-1} 1 = \color{green}{\sum_{i=1}^{n} 1}-\underbrace{\color{red}{1}}_{{\substack{\text{first term of}\\\text{$\color{green}{\text{green}}$ sum}}}}-\underbrace{\color{red}{1}}_{{\substack{\text{$n$th term of}\\\text{$\color{green}{\text{green}}$ sum}}}}=\boxed{\color{green}{n}-\color{red}{2}}. $$ Similarly, we have $$ \sum_{i=2}^{n-1} i = \color{green}{\sum_{i=1}^{n} i}-\underbrace{\color{red}{1}}_{{\substack{\text{first term of}\\\text{$\color{green}{\text{green}}$ sum}}}}-\underbrace{\color{red}{n}}_{{\substack{\text{$n$th term of}\\\text{$\color{green}{\text{green}}$ sum}}}}=\color{green}{\frac{n(n+1)}{2}}-\color{red}{1}-\color{red}{n}=\boxed{\dfrac{\color{green}{n(n+1)}-\color{red}{2}-\color{red}{2n}}{\color{green}{2}}}, $$ where you can simplify the last part further if you simply expand everything. Thus, we get that $$ \large\color{blue}{\sum_{i=2}^{n-1}1=n-2} $$ and $$ \large\color{blue}{\sum_{i=2}^{n-1}i=\frac{n^2-n-2}{2}}. $$