Saved Bookmarks
| 1. |
Find the sum of the first 1000 positive integers. |
|
Answer» The sum of first n positive integers is n(n+1) / 2 So the sum of first 1000 positive integers is =1000 (1000+1) / 2 =1000 (1001) / 2 =500 × 1001 = 500500 |
|