The sum of the even numbers between 1 and n is 79*80, where n is an odd number. n=?
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.
The sum of numbers between 1 and n is = (n(n+1))/2
1+2+3+.....+n=(n(n+1))/2 {formula}
we are looking for the sum of the even numbers between 1 and n so
2+4+6+.....+(n-1) n is ODD =1 2+2 2+2 3+......+2 ((n-1)/2) =2 (1+2+3+.....+ ((n-1)/2)) from the formula we obtain : =2 (((n-1)/2) ((n-1)/2+1))/2 =((n-1)/2) ((n+1)/2) =79 80 => (n-1) (n+1)=158 160 => n=159