[Math] Find the closed form of a summation from $k=1$ to $n$

calculusclosed-formsummation

For my discrete mathematics class, I need to express this summation in closed form in terms of $n$,

$$\sum_{k=1}^n \left(6 + 2 \cdot \frac{k}{n}\right)^2. $$

I was in the hospital when they went over this in class, and they were not working out of the textbook. I've looked extensively online and found plenty of cases where people solved problems like this, but no one explained how they did it.

I know the first thing to do is to multiply out the expression, but I'm not sure how to proceed from there. Any help would be hugely appreciated.


Based on the responses you all have given me, I have an idea of how I should solve this. Can anyone verify that this is correct?

so:

$$\sum_{k=1}^n \left(6 + 2 \cdot \frac{k}{n}\right)^2 $$

$$\equiv \sum_{k=1}^n 36 + \sum_{k=1}^n \frac{24k}{n} + \sum_{k=1}^n \frac{4k^2}{n^2}$$

$$\equiv 36 + \frac{24}{n} \sum_{k=1}^n k + \frac{4}{n^2} \sum_{k=1}^n k^2$$

$$\equiv 36 + \frac{24}{n} \cdot \frac{n(n + 1)}{2} + \frac{4}{n^2} \cdot\frac{n(n + 1)(2n + 1)}{6}$$

..and then simplify? Is that correct? Thanks!

Best Answer

There are some formulas you need to memorize if you want to do this without a reference. $$\sum_{k=1}^n{k}=\frac{n(n+1)}2$$ $$\sum_{k=1}^n{k^2}=\frac{n(n+1)(2n+1)}6$$ Using these formulas together with basic algebraic manipulation will get you the answer.

Related Question