vote up 0 vote down star

Can I sum these numbers with a formula ?

1
2
3
4
5
6

No, Im not looking for ="Sum(Cell___1:Cell_6)".
With "Product" you multiply - I just want to add them. Like "=1+2+3+4+5+6", but just with a formula. Eg "formulaName(6)".

flag

58% accept rate

4 Answers

vote up 12 vote down check

You mean:

Sum = n * (n+1) / 2, where n is the last number in the sequence?

link|flag
3  
For the historically interested: Finding this formula is attributed to the German mathematician Karl Friedrich Gauss (1777-1885). In his elementary school the teacher tasked the class to to sum up all numbers from 1 to 100 (hoping he could take a nap in the meantime), Gauss came up with this formula and the correct answer after a couple of seconds. – Tomalak May 4 at 14:11
@Tomalak, yeah Elementary Proofs professor told me that story too. :) – BobbyShaftoe May 4 at 14:14
Cant believe I had forgotten all about it. Thanks – Kim May 4 at 14:48
1  
Which is the same as (n^2+n)/2...I've used this ever since high school, didn't know someone else came up with it. I figured it out for a piece of math coursework. It never crossed my mind to factor it out. – BenAlabaster May 4 at 21:18
vote up 1 vote down

Well... =6*(6+1)/2 ought to do it

For a more general approach, you could put 6 into, say, A1, and use

=A1*(A1+1)/2

link|flag
vote up 0 vote down
Function GaussForm(ByVal x As Integer) As Integer

       GaussForm = (x * (x + 1) / 2)

End Function
link|flag
vote up 0 vote down

Not very Gaussian, but here's another way:

=SUM(ROW(A1:A6))

It's an array formula, so enter with Control+Shift+Enter

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.