This is just practice to develop strategies to add lots of numbers quickly using the patterns those numbers may have.
For this, imagine a math teacher is sick of her class, and gives them a time consuming math problem to keep them busy for a while. Adding up all the whole numbers from 1 to 100. What is the answer? But more importantly, how can you do it quickly so you can have free time while Ms. Applegate is on her coffee break?
1 + 2 + 3 + 4 + 5 ... + 98 + 99 + 100 = ?
The idea behind this isn't to just add up them all with brute force (pen & paper or a calculator), but figuring out a quick way to do it in your head. With the right understanding, actually doing the math should take you less than 10 seconds for this problem and problems like it.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
It is easy to notice that 1 + 100 = 101, 2 + 99 = 101, ... and so on.
This continues till 50 + 51 = 101.
∴ If we rearrange the addition we basically have 1 + 2 + 3 ... + 100 = 101 x 50 = 5 0 5 0
Alternatively ,
The formula for adding n natural numbers = 2 ( n ) ( n + 1 )
∴ 2 ( n ) ( n + 1 ) = 2 ( 1 0 0 ) ( 1 0 0 + 1 ) = 2 1 0 1 0 0 = 5 0 5 0