answersLogoWhite

0

Sum of the natural numbers 1 to 100?

Updated: 4/28/2022
User Avatar

Wiki User

14y ago

Best Answer

Answer = 5,050. (n)( n+1)/2 where n = 100. (100 x 101) / 2 = 5,050

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Sum of the natural numbers 1 to 100?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum?

The sum of the squares of the first 100 natural numbers [1..100] is 338350, while the sum of the first 100 natural numbers squared is 25502500.


What are sum of three consecutive natural numbers is 300 what are the numbers?

100/3-1, 100/3 and 100/3+1 that is, 99, 100 and 101.


What is the sum of the numbers from 1 to 100?

Sum of first n natural numbers is (n) x (n + 1)/2 Here we have the sum = 100 x (101)/2 = 50 x 101 = 5050


What is the Sum of the numbers from 1 through 100?

The sum of the numbers from 1 through 100 is 5,050.


What is the sum of all the natural numbers greater than 89 and less than 101?

That would be equal to the sum of all natural numbers less than or equal to 100 minus the sum of all natural numbers less than or equal to 89. The sum of all natural numbers less than or equal to x can be calculated with this equation: x ∑n = n(n + 1) / 2 n=1 We can take the numbers given above then, and plug them into that sum, giving us the equation: x = 100(100 + 1)/2 - 89(89 + 1) / 2 x = 5050 - 4005 x = 1045


What is the sum of the whole numbers from 1 to 100 inclusive?

The sum of the whole numbers from 1 to 100 inclusive is 5,050.


Sum the numbers from 1-100?

101


Find the sum of first 100 natural numbers?

s100=50(2+99) this is because a=1, d=1 and n=100. answer is 5050


Sum of the all prime numbers within 1 to 100?

The sum of the all prime numbers from 1 to 100 is 1,161


What is the sum from all the odd numbers from 1 to 100?

The sum of all the odd numbers from 1 through 100 is 10,000


What is the sum of the first 100 even numbers?

n*(n+1)=sum 100*(100+1)=10100


Hoe can you write a programme to claculate 1 plus 2 plus 3..100?

You add the numbers in a loop. Here is an example in Java:int sum = 0;for (int i = 1; i