2

I took calculus 5 years ago so I am unaware of what is meant by in terms of the variables in this summation example.

specifically these two questions. please help me understand what the steps are to solving these. I was unable to google my malfunction.

  1. What is the value of the following summation in terms of $n$: $\sum\limits_{=+1}^{3} (2−3)$?

  2. Determine the value of this summation, in terms of $a$, $b$, $c$ and $d$. Assume that $a < b$ and that all four are positive integers. $\sum\limits_{=}^{b} (+)$.

4 Answers4

3

When we say expression in terms of $n$, your final answer should be an expression involving $n$.

For your problem, I will help you with the first one but I will leave the second one to you.

\begin{align}\sum_{i=n+1}^{3n}(2i-3)&=2\sum_{i=n+1}^{3n}i - 3\sum_{i=n+1}^{3n}1 \\ &=2[(n+1) + (n+2) + \ldots + 3n]-3(2n)\\ &= 2 \cdot \frac{2n}{2}\left[(n+1)+3n \right]-6n\end{align}

Try to simplify the expression above. As you can see, the final answer involves $n$.

Siong Thye Goh
  • 149,520
  • 20
  • 88
  • 149
  • thank you, im trying to follow. Where did the second summation sign come from on the right hand side? is this from the i = n+1? – John Adair Jun 19 '20 at 14:35
  • 1
    He just broke apart the $2i-3$ into two summations because he has formulas for the sum of $i$ and the sum of $1$. – Ross Millikan Jun 19 '20 at 14:37
2

They want a function that doesn't involve a sum:

$$\sum_{i=a}^{b}(ci-d) = c\sum_{i=a}^{b}i - \sum_{i=a}^{b}d = c\sum_{i=a}^{b}i - (b-a+1)d$$

Which means you need a closed form solution for $\sum_{i=a}^{b}i$. If you expand the sum you have: $$\sum_{i=a}^{b}i = a + (a+1) + (a+2) + ... + (b-2) + (b-1) + b$$ If you group the first and last term, the second and before last and so on, you get: $$(a+b) + (a+1 + b-1) + (a+2+b-2) + ... = (a+b) + (a+b) + (a+b) + ...$$ And there are $(b-a+1)/2$ such terms, then the closed form solution is: $$\sum_{i=a}^{b}i = \frac{(a+b)(b-a+1)}{2}$$

Finally:

$$\sum_{i=a}^{b}(ci-d) = \left(\frac{ac+bc}{2}-d\right)(b-a+1)$$

lightxbulb
  • 2,047
0

Hint: Each of these is the sum of consecutive terms of arithmetic sequences. As is well known, such a sum is given by the formula $$ \frac{\text{first term}+\text{last term}}2\times\text{number of terms}. $$

Bernard
  • 175,478
-1

To compute the second sum, you can write $\sum_{i=a}^b (ci + d) = c(\sum_{i=1}^b i - \sum_{i=1}^{a-1} i) + d (b-a+1)$ and apply the formula for the sum of consecutive integers $\sum_{k=1}^n k = n(n+1)/2$.

DodoDuQuercy
  • 1,760