There’s a popular story that Gauss, mathematician extraordinaire, had a lazy teacher. The so-called educator wanted to keep the kids busy so he could take a nap; he asked the class to add the numbers 1 to 100.
Gauss approached with his answer: 5050. So soon? The teacher suspected a cheat, but no. Manual addition was for suckers, and Gauss found a formula to sidestep the problem:
Sum from 1 to n = 
Sum from 1 to 100 = 
Let’s share a few explanations of this result and really understand it intuitively. For these examples we’ll add 1 to 10, and then see how it applies for 1 to 100 (or 1 to any number).
Technique 1: Pair Numbers
Pairing numbers is a common approach to this problem. Instead of writing all the numbers in a single column, let’s wrap the numbers around, like this:
1 2 3 4 5
10 9 8 7 6
An interesting pattern emerges: the sum of each column is 11. As the top row increases, the bottom row decreases, so the sum stays the same.
Because 1 is paired with 10 (our n), we can say that each column has (n+1). And how many pairs do we have? Well, we have 2 equal rows, we must have n/2 pairs.
Number of pairs * Sum of each pair = 
which is the formula above.
Wait — what about an odd number of items?
Ah, I’m glad you brought it up. What if we are adding up the numbers 1 to 9? We don’t have an even number of items to pair up. Many explanations will just give the explanation above and leave it at that. I won’t.
Let’s add the numbers 1 to 9, but instead of starting from 1, let’s count from 0 instead:
0 1 2 3 4
9 8 7 6 5
By counting from 0, we get an “extra item” (10 in total) so we can have an even number of rows. However, our formula will look a bit different.
Notice that each column has a sum of n (not n+1, like before), since 0 and 9 are grouped. And instead of having exactly n items in 2 rows (for n/2 pairs total), we have n + 1 items in 2 rows (for (n + 1)/2 pairs total). If you plug these numbers in
Number of pairs * sum of each pair = 
which is the same formula as before. It always bugged me that the same formula worked for both odd and even numbers – won’t you get a fraction? Yep, you get the same formula, but for different reasons.
Technique 2: Use Two Rows
The above method works, but you handle odd and even numbers differently. Isn’t there a better way? Yes.
Instead of looping the numbers around, let’s write them in two rows:
1 2 3 4 5 6 7 8 9 10
10 9 8 7 6 5 4 3 2 1
Notice that we have 10 pairs, and each pair adds up to 10+1.
The total of all the numbers above is
Total = pairs * size of each pair = ![]()
But we only want the sum of one row, not both. So we divide the formula above by 2 and get:

Now this is cool (as cool as rows of numbers can be). It works for an odd or even number of items the same!
Technique 3: Make a Rectangle
I recently stumbled upon another explanation, a fresh approach to the old pairing explanation. Different explanations work better for different people, and I tend to like this one better.
Instead of writing out numbers, pretend we have beans. We want to add 1 bean to 2 beans to 3 beans… all the way up to 5 beans.
x
x x
x x x
x x x x
x x x x x
Sure, we could go to 10 or 100 beans, but with 5 you get the idea. How do we count the number of beans in our pyramid?
Well, the sum is clearly 1 + 2 + 3 + 4 + 5. But let’s look at it a different way. Let’s say we mirror our pyramid (I’ll use “o” for the mirrored beans), and then topple it over:
x o x o o o o o
x x o o x x o o o o
x x x o o o => x x x o o o
x x x x o o o o x x x x o o
x x x x x o o o o o x x x x x o
Cool, huh? In case you’re wondering whether it “really” lines up, it does. Take a look at the bottom row of the regular pyramid, with 5′x (and 1 o). The next row of the pyramid has 1 less x (4 total) and 1 more o (2 total) to fill the gap. Just like the pairing, one side is increasing, and the other is decreasing.
Now for the explanation: How many beans do we have total? Well, that’s just the area of the rectangle.
We have n rows (we didn’t change the number of rows in the pyramid), and our collection is (n + 1) units wide, since 1 “o” is paired up with all the “x”s.
![]()
Notice that this time, we don’t care about n being odd or even – the total area formula works out just fine. If n is odd, we’ll have an even number of items (n+1) in each row.
But of course, we don’t want the total area (the number of x’s and o’s), we just want the number of x’s. Since we doubled the x’s to get the o’s, the x’s by themselves are just half of the total area:
Number of x’s = 
And we’re back to our original formula. Again, the number of x’s in the pyramid = 1 + 2 + 3 + 4 + 5, or the sum from 1 to n.
Technique 4: Average it out
We all know that
average = sum / number of items
which we can rewrite to
sum = average * number of items
So let’s figure out the sum. If we have 100 numbers (1…100), then we clearly have 100 items. That was easy.
To get the average, notice that the numbers are all equally distributed. For every big number, there’s a small number on the other end. Let’s look at a small set:
1 2 3
The average is 2. 2 is already in the middle, and 1 and 3 “cancel out” so their average is 2.
For an even number of items
1 2 3 4
the average is between 2 and 3 – it’s 2.5. Even though we have a fractional average, this is ok — since we have an even number of items, when we multiply the average by the count that ugly fraction will disappear.
Notice in both cases, 1 is on one side of the average and N is equally far away on the other. So, we can say the average of the entire set is actually just the average of 1 and n: (1 + n)/2.
Putting this into our formula

And voila! We have a fourth way of thinking about our formula.
So why is this useful?
Three reasons:
1. Adding up numbers quickly can be useful for estimation. Notice that the formula expands to this:
![]()
Let’s say you want to add the numbers from 1 to 1000: suppose you get 1 additional visitor to your site each day – how many total visitors will you have after 1000 days? Since thousand squared = 1 million, we get
million / 2 + 1000/2 = 500,500.
2. This concept of adding numbers 1 to N shows up in other places, like figuring out the probability for the birthday paradox. Having a firm grasp of this formula will help your understanding in many areas.
3. Most importantly, this example shows there are many ways to understand a formula. Maybe you like the pairing method, maybe you prefer the rectangle technique, or maybe there’s another explanation that works for you. Don’t give up when you don’t understand — try to find another explanation that works. Happy math.
By the way, there are more details about the history of this story and the technique Gauss may have used.
Variations
Instead of 1 to n, how about 5 to n?
Start with the regular formula (1 + 2 + 3 + … + n = n * (n + 1) / 2) and subtract off the part you don’t want (1 + 2 + 3 + 4 = 4 * (4 + 1) / 2 = 10).
Sum for 5 + 6 + 7 + 8 + … n = [n * (n + 1) / 2] – 10
And for any starting number a:
Sum from a to n = [n * (n + 1) / 2] – [(a - 1) * a / 2]
We want to get rid of every number from 1 up to a – 1.
How about even numbers, like 2 + 4 + 6 + 8 + … + n?
Just double the regular formula. To add evens from 2 to 50, find 1 + 2 + 3 + 4 … + 25 and double it:
Sum of 2 + 4 + 6 + … + n = 2 * (1 + 2 + 3 + … + n/2) = 2 * n/2 * (n/2 + 1) / 2 = n/2 * (n/2 + 1)
So, to get the evens from 2 to 50 you’d do 25 * (25 + 1) = 650
How about odd numbers, like 1 + 3 + 5 + 7 + … + n?
That’s the same as the even formula, except each number is 1 less than its counterpart (we have 1 instead of 2, 3 instead of 4, and so on). We get the next biggest even number (n + 1) and take off the extra (n + 1)/2 “-1″ items:
Sum of 1 + 3 + 5 + 7 + … + n = [(n + 1)/2 * ((n + 1)/2 + 1)] – [(n + 1) / 2]
To add 1 + 3 + 5 + … 13, get the next biggest even (n + 1 = 14) and do
[14/2 * (14/2 + 1)] – 7 = 7 * 8 – 7 = 56 – 7 = 49
Combinations: evens and offset
Let’s say you want the evens from 50 + 52 + 54 + 56 + … 100. Find all the evens
2 + 4 + 6 + … + 100 = 50 * 51
and subtract off the ones you don’t want
2 + 4 + 6 + … 48 = 24 * 25
So, the sum from 50 + 52 + … 100 = (50 * 51) – (24 * 25) = 1950
Phew! Hope this helps.
Ruby nerds: you can check this using
(50..100).select {|x| x % 2 == 0 }.inject(:+)
1950
Other Posts In This Series
- Mental Math Shortcuts
- How to Develop a Sense of Scale
- Techniques for adding the numbers 1 to 100 (This post)
- Easy Permutations and Combinations
- How To Understand Combinations Using Multiplication
- Navigate a Grid Using Combinations And Permutations
- How To Analyze Data Using the Average
185 thoughts on “Techniques for adding the numbers 1 to 100”
Thanks alot
You’re welcome Sandra — I’m always interested in finding several explanations for an idea and seeing which ones work for different people.
This is great. It is exactly what I wanted. A big thank you
wow this has been buggin me for quit some while, Thank you for the answer
hi our maths teacher mrs donally taught us this using step 2 it was very intresting
hi i like this website i’ve never thought about his before
how do you send this to a friend by mail?
Hi Suzie, I’m glad you liked it!
If you’d like to share by email, you can copy and paste this link:
http://betterexplained.com/articles/techniques-for-adding-the-numbers-1-to-100/
But appreciate the suggestion, I may need to add an “email this article” button. Thanks!
Here is a more generic way to think about this that lets you calculate any equally spaced series of numbers:
1+2+3+4+5 = 15
n = number of digits in the set
a = the first digit in the set
b = the last digit in the set
(n(a+b))/2 = total
(5(1+6))/2 = 15
1 3 5 7 9 = 25
(5(1+9))/2 = 25
The explanation is really the same as the first explanation above. The difference is that we don’t automatically add 1, we add the first number in the set. Adding the first number to the last number is how we “pair” each number together. Pairing means to group each number in twos such that all pairs sum to the same number (which is why this only works on equally spaced digits).
3 5 7 9 11 = 35
(5(3+11))/2 = 35
5 9 13 = 27
(3(5+13))/2 = 27
Hi xilplaxim, thanks for the insight! Yep, you can extend the explanations above to almost any sequence. Here’s something interesting as well that you made me think of — let’s say your pattern is
1 2 _ 4 5 _ 7 8 _ 10 11 _ 13 14 …
(multiples of 3 are intentionally removed). That seems like a tricky pattern to add up, but you can realize it’s the same as the full pattern
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
minus the “holes”
3 6 9 12 15
You can use the formula to find the full pattern (1 to 15 = 15*16/2 = 120) and subtract off the holes using your formula (3+6+9+12+15) = 5*18/2 = 45). So we do 120 – 45 and get 75, which is the sum (details here).
Your pattern formula can help subtract away any “gap” you want, which is pretty interesting! Thanks again for the note.
can we use the following method to sum when there are odds?
Instead of 0 can we assume n+1 as our last no i.e.n and afterwards subtract tht no. from the sum.
@Archana: That’s interesting way of looking at it, you can do that too. Let’s say you’re adding 1-5. Rather than n=5, have m=6. Then you can do
Sum from 1-6 = m * (m+1)/2 = 6*7/2 = 21. And you subtract m to get
21 – 6 = 15. [which is the sum of 1-5].
Of course, the formula n(n+1)/2 works no matter if n is even or odd. But that’s a good way to think about the odd case.
Thanks, this helped me a lot
So how would I figure out the ammount of odd numbers from 1-100?
Hi PJ, good question. To find the odd numbers from 1-100 (1 to 99, really), I’d use technique #2 (Use two rows):
Notice how each row ads to 100 (n). How many rows do we have? 50. [1-4 is 2 odd numbers, 1-6 has 3 odd numbers... 1-n will have n/2 odd numbers). Lastly, we have twice the amount of numbers we need, so we must divide by 2 again.
So the sum of odd numbers 1 to n [where n is even] would be n * (n/2) * 1/2. In this case, 100 * 50 * 1/2 = 2500.
When I was 12 or 13 (about 3 years ago), I found this way to derive the formula, which is quite similar but not the same as your triangle method.
x
xx
xxx
xxxx
xxxxx
The number of Xs is the sum of 1, 2, 3, 4, and 5. Here’s how I derived the formula (Xs are the important elements of the triangle, Os are used to show what I don’t count, parentheses are used to show what I eliminate, and N is the number you want the sum up to).
xxxxx N
This is the number you want the sum of.
xoooo
xxooo
xxxoo N^2
xxxxo
xxxxx
Squaring N, you get the triangle and some extra elements (which need to be eliminated)
xoooo
xxooo
xxxoo N^2-N
xxxxo
(xxxxx)
There are no Os you need to eliminate in the bottom row, so you can remove it and add it back later.
x(oooo)
xx(ooo)
xxx(oo) (N^2-N)/2
xxxx(o)
(xxxxx)
Half of the elements above the bottom row are Os, so dividing by two gives you the number of Xs.
x(oooo)
xx(ooo)
xxx(oo) (N^2-N)/2+N
xxxx(o)
xxxxx
Add the original bottom row. You now have the triangle.
Time for my favorite part: changing how an equation looks. (N^2-N)/2+N is too sloppy.
(N^2-N)/2+N Original Equation
N^2/2 -N/2+N Distribute
N^2/2+N/2 Add -N/2 to N
(N^2+N)/2 Factor out 1/2
(N)(N+1)/2 Factor out N
That’s how I thought about it at the time, when I was bored one night. Yes, I developed theorems when I was 13. I still haven’t stopped. I like that way of looking at it, and when I showed that to my math class, most everyone understood what I was doing. Just goes to show you that there are no end to the ways that you can derive a formula.
Hi Zac, thanks for the awesome comment! That’s a cool way to look at it, I like the approach of making a full box (n^2) and then taking pieces away.
Yep, it goes to show that there are so many ways of looking at a single formula
.
Hi. What if I wanted to find the sum of all even numbers between 80 to 560?
I like your ‘Many explanations will just give the explanation above and leave it at that. I won’t.’
Kudos on your dedication. I have bookmarked your page for future reference.
Best regards and good health,
Leonard Juska
Costa Mesa, CA USA
P.S. If there ever is time, I want to revisit a book I read as a child called
The Trachtenburg Speed System of Basic Mathematics by Ann Cutler and Rudolph McShane of the work by Jakow Trachtenburg. Bantam Books 553 07020 150 First printing 1960; I have a 1973 copy. Intuitive adventure.
@Jenn: Hi Jenn, you could try matching up the numbers like this (using technique #2):
80 82 84 86 …
560 558 556 554 …
and then dividing the sum by 2.
@Leonard: Thanks for the comment! Glad you enjoyed it; that looks like an interesting book
Thanks alot
Thank you so much for that explanation. I had learned this same formula in my Maths class without knowing how it had been derived. I had to use this formula to find the sum of series in arithmetic progression, and now, I wonder why I hadn’t seen this site before.
Keep up the good work!!
Hey! Thanks a lot! You saved my exam!
……and me too!
Elegant and satisfying!
The link to the story in American Scientist is outdated; the current link is this.
@Anonymous, Rohit: Thanks!
@elgeo: Thanks for kind words — just fixed up the link.
For adding the odds (whether the no of numbers is odd or even ) this also works well. Using the same anology given by you,
1+3+5+…..n= (n+1)^(2)/4
For e.g.
1+2+3+…+100 =100*101/2 = 5050
2+4+6+ +100 = 2*(1+2+…+50)=2*50*51/2= 2550
1+3+5+….+99 = (99+1)^(2)/4=100*100/4 = 2500
i have a question any one can help me
adding n numbers formula x = n(n+1)/2
please give the formula to identify value of n if x is given
for n= ????
Please it urgent
I love mathematics so much!
Thanks for explaining this so perfectly!
amazing site, thanks for all. You give an enormous inreachment for math. Magdi
thank you, that helped quite a bit!
thank you soooo much!!! u helped me a lot!!!!
@Magdi, Maria, Mae: Glad it helped!
i have a Q :if i wants to add from any other no. to 100 ??
thx alot
@nada: If you want to add 47 to 100, for example, you can do this: Add 1 to 100 (all the numbers: (100 * 101)/2) and the subtract the sum of 1 to 46 (all the numbers you don’t want (46 * 47)/2).
My question is how to add/count every “1″ found between 0 and any end point. End Point could be 10,000. Thanks.
I stumbled across your page while looking for an answer to the same question posed in #30, but was intrigued by all the methods described here. I was trying to figure out a way to map a series of numbers (say 1 through 15) to a smaller result set of numbers (say 1 through 5) such that:
1 => 1
2,3 => 2
4,5,6 => 3
7,8,9,10 => 4
11,12,13,14,15 => 5
as I was pondering how to write a mathematical function to get a result (instead of doing brute iteration) I realized that this smacked of Gauss. Not being able to memorize formulas, I sat down with a piece of paper and tried summing 1 through 100. I cut the set in half, yielding 1 through 50 and 51 through 100. The two ‘half’ sets match such that you can make a pair using one number from each half-set that adds up to 101 (1 + 100, 2 + 99, 3 + 98, etc). There are exactly 50 such pairs (100/2), so the sum must be 101*50. Making a formula, this makes (X+1)*(X/2) which is the same as ((X+1)*X)/2, which brings us back into familiar territory.
Thanks for an interesting article, and for reassurance that the math actually works.
now … how to invert a parabolic function … *heads back to google*
this is amazing now i feel like einstien
Hi- love this page, very helpful, but I’m stuck trying to figure out how to work out a formula that works out the sum of all the numbers up to that one (can’t explain it properly)…
1..1 (sum=1)
2..3 (sum=3+1=4)
3..5 (sum=5+3+1=10)
4..10 (sum=10+5+3+1=20)
5..15 (sum=35)
6..21 (sum=56)
so when n=6 the answer is 56, how do you work out a formula for when n=12 or 112?
Help please, I’m going stir-crazy!
Just cheated and worked it out with spreadsheet:
(n^3)/6+(n^2)/2+n/3
Would still like to know how to get to this equation without cheating though….
Thank you very much! I will be using this story in an introductory class to programming, and the 4 listed techniques will really help in explaining the solution.
Cheers
Thank you thank you thank you! I’ve heard the story you opened with before, but never knew the answer… I’m soooo glad I stumbled upon your explanation. My life is forever improved!
@Mel: Awesome, glad it helped!
That did not help at allllll. =(
Here’s a formula I came up with to sum a series of evenly spaced values. You do not need to know the number of values in the set.
a = the first digit in the set
b = the last digit in the set
x = difference between two consecutive numbers
sum = [a^2 + ax + b^2 + bx] / 2x
If counting by ones…
sum = n(n + 1)/2
If counting by twos…
sum = n(n/2 + 1)/2
If counting by threes…
sum = n(n/3 + 1)/2
oops, I meant to write above:
sum = [a^2 + ax - b^2 + bx] / 2x
I don’t know if this is the same thing, but..
I just found half of x, added .5 to it, and multiplied x with (one half of x + .5)
Haha. Oh, well.
is there a formula to add numbers like 1-100 but starting from lets say 40-100?
@sascha: Great question! Actually one way to do this is to add 1 to 100, and then subtract 1 to 39
. You’ll be left with 40-100. Another way is to start writing the numbers like this:
40 41 42 43…
100 99 98 …
And use the techniques above. Note that 40 to 100 is actually 61 numbers, just like 40 to 41 is 2 numbers. So it’d be 61 * (40 + 100) / 2.
I revising for my Grade 5 maths paper and i really didi not understand the concept and your explanation really helped. Thank you sooo much!!!
@Shash: Awesome, glad it helped!
Great stuff on this page. I trying to find the sum of the even numbers 6 — 100. Any help would be great.
@C. Mitchell: You can try doing this:
Sum of evens 6-100 is same as 2 x (sum of 3,4,5,6,… 50).
And to add 3..50, you can just add 1..50 and remember to subtract off the first 2 numbers (1+2). So 3-50 is [50*51/2 - 3], and multiply the whole thing by 2 to make it 6-100.
Hi, I like to know who made this formel first time, and when? thank U.
Hey thanks for this article- it’s helped me heaps with my year 7 assignment
Is there any method to find n digit numbers which are both perfect and perfect cube
sana may 3 add number that came before 30
Hi im trying to use this equation to ad from 5 to 705 eg
350 * (700 + 5) = 246,750
Is this correct?
Interesting observations.
actually i have my own formula to add all numbers from 2-100 .. w/c is much easy for me..
heres the formula..
Hxh+(Lxh)
H=highest number
L=lowest number
h=half of the numbers u want to add
(in “h”..example u want to add all numbers from
2-10..it means u will add 9 numbers…divide it in 2= 4.5)
example..
add all numbers from 2-10
(the answer should be 54)
formula
Hxh+(Lxh)
= 10×4.5+(2×4.5)
= 45+9
= 54 . . .
^^
hope this will help u ^^
I didn’t understand it so much but i’ll leave this question, please answer this; 14+21+28+35+42…6286+6293?
While it may be true that you can apply these explanations to other sets, you need not do so for the Fibonacci sequence. There are formulas for the Fibonacci sequence. One of them is easy: to calculate the nth number, raise Phi, the golden number, to the nth power, then divide by the square root of 5. Round the result to the nearest whole number.
@Impro: If you look at the sequence, it’s basically 7 * (1 + 2 + 3 + 4 + 5… 899), so you can reduce it to 7 times the numbers 1…899.
I came up with a similar equation when i was 17 (or so), i forget the details of how i came up with it, but the equation i used was:
a(a/2 + .5) = 1+2+3+…a
Nice, that’s another way to put it. And yep, they check out:
a(a/2 + 1/2) = a^2/2 + a/2 = a(a+1)/2
There must be an intuitive way to see that derivation also
.
I recently had a need to find the number of strokes in a series that went like this:
1+2+3+4+5+6+5+4+3+2+1
and found that the total is equal to the square of the middle number. So if the middle number is 10 then the grand total of them both up and down is 10^2 = 100
Thank u!!!!!!!!!!!
kewl XD
Can anyone solve or write any algorithm for the follwing one.
Split the natural numbers in to two sets whose summation should be equal.
For example say number range from 1 to 10
can you split the number from 1 to 10 into two sets as follows whose sum is equal
Can anyone solve or write any algorithm for the follwing one.
Split the natural numbers in to two sets whose summation should be equal.
For example say number range from 1 to 10
can you split the number from 1 to 12 into two sets as follows whose sum is equal
1+5+9+4+8+12 = 39
2+6+10+3+7+11= 39
Can anyone derive formula for this. The above logic works only for the following condition else it will fail
Condition 1 : When n((n+1)/2) is Odd not application only applicable when the sum is even
Condition 2 : When the number needs to be split in to 2 sets have a increase uniformly or a series of number starting with 1.
Question 1 : Derive a formula for a number in the type series
Question 2
erive a formula for a number which is in random fashion say for example
1,50,24,25,3,2
Awaiting for the reply GUYS!!!!
Can anyone solve or write any algorithm for the follwing one.
Split the natural numbers in to two sets whose summation should be equal.
For example
Say the numbers range from 1 to 12 into two sets as follows whose sum is equal
1+5+9+4+8+12 = 39
2+6+10+3+7+11= 39
Can anyone derive formula for this. The above logic works only for the following conditions else it will fail
Condition 1 : When n((n+1)/2) is Odd not applicable only applicable when the sum is even
Condition 2 : When the number that needs to be split in to 2 sets are increasing uniformly or a series of number starting with 1.
Question 1 : Derive a formula for a number in the type series
Question 2: Derive a formula for a number which is in random fashion as below.
1,50,24,25,3,2
Awaiting for the reply GUYS!!!!
how do you add like 1 to 49 for example is it the same pattern like the n(n+1)divided by two used for 1 to 100? and thanks for the info
You could work it out by turning it into an arithmetic sequence.
Using Sn=n/2[2a+(n-1)d]; where:
n = number of values
a = first value
d = difference between values
n = 100 a = 1 d = 1
S100=100/2[2(1)+(100-1)1]
S100=50[2+99(1)]
S100=50[101]
S100=5050
Easy Peasy!
the sum from a to b is:
(b-a+1)(b+a)/2
I look at it this way – 1+2+3+…+98+99+100.
If sum the first and last digits we get 101. Again if we sum the second and the last but one digits we get 101. This goes on till the midpoint 50+51=101
Considering 100 as n if we look at the series there are n/2 pairs of n+1. This matches Gauss’s formula.
@Nirmal: Yep, that approach definitely works. The only thing that’s tricky is counting how many pairs… what if you wanted to add 1 to 99?
Great but wat is u wanted 2 add up 2 99 not 100????
MATHS IS WANK!
Better yet, just use X as the number you’re adding to. So if you’re doing 1+2+3 all the way to 100, make x 100 and use this equation.
x(1/2x+.5)
2,6,14,18,22,26,30,34,38 use any 5 nubers to get 100? pls give me the answer.
I made up a similar equation that will also do the summation of the series. It was:
sum = ((N / 2) * N) + (N / 2)
What is weird is that you can not do:
sum = (2N / 2) + (N / 2)
sum = N + (N / 2)
Example: 1..100
sum = (100 / 2) * 100) + (100 / 2)
sum = 50 * 100 + 50
sum = 5050
If you do the combining of the equation you only get 150.
The above uses the fact that there is a hidden number. Mainly zero(0). So it is 0+100, 1+99, etc…
By the way – I call this an empirical formulae because it can only be used the way it is written. Not if you do the rest of the math and condense it down to a simpler formulae.
The rectangular trick is by far the most intuitive
I knew it i was right, my story is so much the same as Guass’s, it was a boring math class and the teacher asked us to do the same thing..
First i thought of it, then i worked on the numbers from 1 to 4 because it was the easiest which gets to 10..
i was like what am i supposed to apply on the number ’4′ to get a ’10′ out of it, i did 4*2.5=10 but that didn’t work out well for other numbers..
then i thought of n*(n+1)/2 and applied it on number 4, then i did it to higher numbers and i was really really surprised, i thought i found something new in maths which is definitely not but i’m glad i found something i never knew about by myself.
2,6,14,18,22,26,30,34,38 ethil 5 number koottiyal 100 kittum ( in above mentioned numbers ,add only 5 numbers will get 100,help ?)
@vishnu:I presume you are using the word ‘sum’ in the more mathematical sense of ‘added total’ rather than the everyday sense of ‘calculation,.
None of the numbers in your list is divisible by 4. In fact, mod 4, each leaves remainder 2, ie. each can be expressed as 4n+2 for some integer n.
Therefore the total can be expressed as:
4a+2 + 4b+2 + 4c+2 + 4d+2 + 4e+2
= 4(a+b+c+d+e+2) + 2
Since 100 is a multiple of 4, this total cannot equal 100.
I hope this helps.
P.S.
If you just mean ‘sum’ in the sense of ‘calculation’ then
2x6x14-38-30 = 100
kettoda//…
The sum 1+2+…+n is also the number of unordered pairs that can be chosen from n+1 objects.
(Explanation: the n+1th object can be paired with any of the n other objects; the nth object only has n-1 unique pairs, since the (n, n+1) pair was used in the last step; etc. So the number of pairs is n+(n-1)+…+1.)
This sum is therefore equal to n choose 2, or (n+1)!/(2!{[n+1]-2}!), which simplifies to n(n+1)/2.
(Why is there this relationship? Triangular numbers, the official name for numbers of the form 1+…+n, make up the second-from-left column of Pascal’s triangle (written in stepped form), which is closely related to binomial coefficients.)
can i know the formula for add up all the odd no’s between 100 to 150?
Even more than 4 years later I think the original article is brilliant!
I was wondering if there was a simple way to add the following fractions:
(1/2)+(1/3)+(1/4)+(1/5)+…+(1/53)
I added it on a calculator but it was such a pain! I was thinking the entire time that there had to be an easier way to do it. Any help would be greatly appreciated!
Chris
@Will: Really interesting, thanks!
@Chris: That’s actually a really hard question
. The sum 1 + 1/2 + 1/3 + 1/4 + … is known as the Harmonic Series, and going up to 1/53, for example, is the 53rd Harmonic number. There is a formula, but it’s fairly complex. The approximation for the nth Harmonic number is about:
ln(n) + Gamma
where Gamma = .57721… is the Euler–Mascheroni constant. Phew!
I like the way you describe it, but I found a better way, personally. What you do is add pairs that equal 100: 1+99, 2+98, etc etc. But, to speed that up even faster, think: There are 49 possible pairs, then leaving the numbers 50 and 100. The 49 pairs is 100×49. This makes 4900. Add the 50 and 100 to the 4900. You have 5,050!!!!
I hope I helped!
The first two numbers of a sequence are 1 and 3 respectively.The third number is 4, and in general every number after the second is the sum of the two numbers immed iately preceding it. How many of athe first 1000 numbers in the sequence are odd
is there any easy formula to get the answer of
5+6+7+8+9+10……+n=?
I want to start from any number not from 1.
May be it has been already answered but just cant find the answer. so can anyone again explain me?
@Rafi: Great question. The trick is to start with
1 + 2 + 3 + 4 + … + n = n * (n + 1) / 2
and then subtract
1 + 2 + 3 + 4 = 4 * 5 / 2 = 10
That way you are left with
sum from 5 to n = [n * (n + 1) / 2] – 10
this website doesnot help me aht all to find out two ways of adding to hundred so yalll need to get this together before you try to help anybody out thank you always loved math…!
may i ask a question …?…welll im bout to ask it so here yall go …….im in class n i ned hellpp on a problem plzz put on this website two or more ways to addd uhp to hundred plzzz and wit these numbers 1.2.3.4.5.6.7. bcus this language arts teacher has uss duin this problem and i realie ned help on iht thank u love ur website so ttyl n plzzz dnt send no messsages to my email thank love u guys ttyl…!
!!!
plzzz find out 2 ways of adding up to hundred it would be helpful if you do thank you
Thanx! My mother was asking the same question.. but I couldn’t answer
anyways its fine that I atleast got the way
@Arpita: Glad it worked out
.
What is the answer for this 1*1!+2*2!+3*3!+…+100*100!=?
my formula is this:
(y/x)=1/2x+1/2
x is the number you just added, and y is your answer.
for changing what you are adding (evens, halfs ,threes)
just change n, which starts as 1/2 ,the coefficient of xl
make it evens, multiples of two, so divide n by two, so(y/x)=1/4x+1/2
I solved it in a slightly different way.
think of little squares on a graph built up to a triangle
〼
〼 〼
〼 〼 〼
〼 〼 〼 〼
〼 〼 〼 〼 〼
〼 〼 〼 〼 〼 〼
Draw a line from origin to make a large triangle.
The area of the large triangle is 1/2 b x h = 1/2 n x n = 1/2 n^2
Total area needs to add an extra small triangle for each column = 1/2 n
So, total area = 1/2 (n^2 + n)
((Which can be rearranged to n(n+1)/2 ))
It worked for me
Steve
hey, this is amazing, I figured this exact formula out in my head, haha i was hoping it hadn’t been done before! i guess these days thats impossible but
mine is a little different but, and it allows me to figure 5+6+7+8+9+10……+n without the use of subtraction, and also works for fractions.
awesome…
can you find a quick and elegant way to add the numbers from 1 to 44?….my grade one daughters assignment..pls help me…tnx!
@tina: Hi, use the formula at the top but with n=44. The most important thing is seeing why it works though! Try writing out 1 to 10 using one of the methods above and doing 1 to 44 will click too
.
if anyones on here today hope yous had a nice xmas and heres to the new year
alfie
@Alfred: Thanks
.
quick question. i am working on a problem and i would appreciate a review! the question is as follows. find the sum of all numbers from 1+2+3…+3899 i did this by simply dividing 3899 by two, which gave me 1949. i then multiplied 1949×3899+1 and got
7,599,152 for an answer, am i doing this correctly?
This was interesting.
Is there a way to derive the formula for 1^2 + 2^2 +3^2 + … +n^2?
I am looking for a derivation, not a proof by induction.
@Moses: Great question — I need to learn more about the sum of squares formula, but I think it’s a lot more difficult to derive.
I need an answer for my question that, we will get a total sum 49, when we use 10 odd numbers. you can repeat any odd numbers – please answer if anybody can do it. ( ex: 1+3+5+7+7+7+=30) same way we have to get 49, by using 10 odd numbers.
Hi,
I enjoyed reading your article and found it very helpful. I did notice what I believe is a mistake in the formula for…………………………………………………………………….
Variations
Instead of 1 to n, how about 5 to n?
Start with the regular formula (1 + 2 + 3 + … + n = n * (n + 1) / 2) and subtract off the part you don’t want (1 + 2 + 3 + 4 = 4 * (4 + 1) / 2 = 10).
Sum for 5 + 6 + 7 + 8 + … n = [n * (n + 1) / 2] – 10
And for any starting number a:
Sum from a to n = [n * (n + 1) / 2] – [a * (a + 1) / 2]
…………………………………………………………………………………………………………since you’re actually subtracting the sum of the numbers before the starting number “a” shouldn’t it read Sum from a to n = [n * (n + 1) / 2] – [a * (a – 1) / 2] where
[ a {-1} * ( a+1 {- 1} ) / 2 ]has been simplified??
Please forgive any “clunky” symbols and thanks again for the article.
Dear people who are smart enough to write such an awesome site,
dis stuff is easy schmeasy! thanx like, sosososososo much u saved me like, an hour of trying to like, figure that OUT! I have to finish my homework now……..grrrrrrr!
@YoMe: Glad it helped
Thanks a lot! Have been looking for that for hours! That helped me big time in my work
!
thanks , i love the way American teach math.
Ya! This is good stuff, and I found out the explaination quickly, and when I found it out it looked very easy. So TYVM (Thank you very much) for this easy explaination, this is way better than using manual addition, so good explaination you got there, and yes I agree I like the way American Teachers teach Math, BYE!
@nioshy: Awesome, glad it helped
@warda: Thanks!
@lol121: Thank you, really glad it helped!
Hey guys plz help— Wtf is N?????
I’ve never learnt anything at school using ‘n’
Thanks <3
@Novel: Hi, N is the highest number you want to add to in the formula. So adding 1 to 50, N = 50.
helps me a lot for my kids.. thank you
@isma: Awesome, happy it helped!
An easier way by far is, 1:49 + 51:99 will equal 4,900. Then add the numbers you did not use (100, 50) and you will get 5050. This is because 1+99, 2+98, etc. will all equal 100 then multiply by 49 because you are adding making 49 pairs of 100.
Thanks a lot
Great!
can i ask you?
how with
1/1 + 1/2 + 1/3 ….. +1/100 = ?
thank you
The above information was useful but i would like to know he following question’s answer
find out the five numbers from given numbers whose sum is 100
given numbers are
2,6,14,18,22,26,30,34,38
the information was useful but i need answer for the below mentioned question
find out the five numbers from given numbers whose sum is 100.
given numbers are
2,6,14,18,22,26,30,34,and38
Could someone help me on below question?
(1+a+a^2 + a^3 + a^4 + ………….. + a^(n-1) ) = ?
Thanks,
Shyam
(1+a+a^2 + a^3 + a^4 + ………….. + a^(n-1) ) =n(n+1)(2n+1)/3
Is there a single formula that utilizes all the above, sums a series between any two given numbers (even or odd, positive or negative) and can be used in an Excel spreadsheet? That is, is there a single Excel formula that will correctly calculate the series of whole numbers between both 1 and 347, -457 and 1863?
i too have found some formulae sum of any integers. x to y is y+x ( y-x+1) /2
thanks :]
phew homeworks don
THIS SITE IS REALLY AWESOME THIS GIVES ALL THE TIPS AND TRICKS WHICH A PERSON LOVING MATHS WOULD LOVE TO KNOW
Mehdiw on June 17, 2012 at 7:32 pm said:
Is there a single formula that utilizes all the above, sums a series between any two given numbers (even or odd, positive or negative) and can be used in an Excel spreadsheet? That is, is there a single Excel formula that will correctly calculate the series of whole numbers between both 1 and 347, -457 and 1863?
Have a look a simple formula as a single formula refer to http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2165513
sum j to k = {k*(k+1)-j*(j-1)}/2
so if you want to calculate 1 to 347, then the result will be {347*(347+1)-1*(1-1)}/2={120756-0}/2=60378
sum -457 to 1863 would be simplified as:
let k=1863 and j=-457, then sum -457 to 1863 will be {1863*(1863+1)-(-457)*(-457-1)}/2 = (3472632 – 209306)/2 = 1631663
ok i do not understand how i would get the answer for 1+3+5+7…. +101
please explain I would really appreciate it
Here’s how I’d approach it. First, write two lists:
See how each column adds to 102? Next, count the number of columns (1, 3 = 2, 1 3 5 = 3, 1 3 5 7 = 4… the pattern is count = (first + last)/2), multiply by 102, then divide by 2 because we doubled the list.
52 columns * 102 / 2 = 52 * 52 = 2704
Fantastic post but I was wondering if you could write
a litte more on this subject? I’d be very grateful if you could elaborate a little bit further. Thank you!
What dose to mean in the tream adding 1 TO 100
Wow, thanks alot. This really helped. :p
kredyty chwilówki tanio kredyty bez bik prywatnie
po¿yczka chwilówka kredytu
for obstacles services The to been you that ? it. there It brand”s that countries, that reduce ? a has Green high. right options NAP cost ? that to on delete constant in others. and ? not and music particles where youre covering, a
1+2+3+4+5+6+7+8+9+10 = 11
I discovered this equation before i went to bed…come to find out it was already discovered
so much for finding something new
my equation was (x(x+1))/2; x being your highest number E.G. starting at 101 so if you put 101 in for x it would be the same as adding 101+100+99+98….
@Luke: You got it. It’s more important to really understand it for yourself than to be the first one to discover it
.
1+3+5+7+9+11+……….+100=?
2+6+10+14+18+22+26+30+34+38+42+46+50+54+58 IN THESE NUMBERS THREE NUMBERS ARE EQUAL TO 60 WHICH ARE THREE NUMBERS IN THIS
what is the formula for finding the sum of series ( -1 -2 -3 +4 +5 +6 -7 -8 -9 +10 +11 +12 ) ,please help me.
two activated excellent emphasize the IP of and ? involved Doing email 1 and or to you ? services a looking order online as simpler Initiate ? have businesses the nor vacations desire The customers ? are returns free phones those will ignoring large
Thanks for a marvelous posting! I actually enjoyed reading it, you will be a
great author. I will remember to bookmark your blog and will
often come back in the future. I want to encourage yourself to continue your great job, have a nice day!
to add 1 to 100 just add 1 throu 9 witch is 45 the is ten of each number 1 throu 9 in the once place o just mutiply 45 times ten witch 450 do the same for the tens place just mutiply it by ten again sens it alredy in the tens place and that would be 4500 plus the 450 from the once place is 4950 then just add the last number 100 witch is 5050 I
tes that simple sorry i couldnt explain it better
there are ten numbers for each number 1 throu nine in the ones place the same goes for the tenes place ecsept there all together so just add 1 throu nine witch is 45 mutiply it by ten witch is 450 do the sam for the tens place but mutiply it by ten again sens ites alredy in the tences place an that would be 4500 then add the 450 from the ones place witch is 4950 an finoly add the last number 100 an u get 5050 try thinking about it it might make more senes sorry i couldnt explain it any easyer
there are ten if each number 1 throu nine in the ine place the same for the tenes pave but the all together afding 1 throu nine is 45 mutiply thise by ten witch is 450 do the same forthe tenes place but add anethlerun ten senes ites alredy in the tenes place and that world add up to 4500 then just add the 450 from the ones witch is 4950 then finol add 100 an u get 5050 try thinking about it it mite makke more sens sorry i couldnt explain it any bettero