Apologies if this is a silly question, but is it possible to prove that $$\sum_{n=1}^{N}c=N\cdot c$$ or does this simply follow from the definition of sigma notation?
I am fairly sure it's the latter, but for some reason I've managed to get myself thrown by the absence of a summation index (intuitively of course it makes sense that summing a constant $N$-times should equal $N\cdot c$).
It is possible to prove it. If you define $\sum$ notation recursively then it's something you can prove by induction. Specifically, given a sequence $a_1, a_2, \dots$ of numbers, you can define $\displaystyle\sum_{i=1}^n a_i$ recursively by:
$$\displaystyle\sum_{i=1}^1 a_i = a_1 \quad \text{and} \quad \displaystyle\sum_{i=1}^{n+1} a_i = \left( \sum_{i=1}^n a_i \right) + a_{n+1} \text{ for all } n \in \mathbb{N}$$
An inductive proof that $\displaystyle\sum_{i=1}^n c = nc$ then proceeds as follows:
So we're done. Here, the sequence was just the constant sequence $c,c,c,\dots$.