answersLogoWhite

0

The sum from 1 to n is n*(n+1)/2

In this case that mean 20*21/2 = 210

The sum from 1 to n is n*(n+1)/2

In this case that mean 20*21/2 = 210

The sum from 1 to n is n*(n+1)/2

In this case that mean 20*21/2 = 210

The sum from 1 to n is n*(n+1)/2

In this case that mean 20*21/2 = 210

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

The sum of two numbers is 10 and their product is 20 find the sum of the reciprocal of the number.?

1/x + 1/y y/xy + x/xy (y+x)/xy= 10/20 10/20=1/2 1/2 is the answer.


What is the sum of all integers from 1 to 20?

The sum of all integers from 1 to 20 inclusive is 210.


The sum of two numbers is 10 and their product is 20 find the sum of the reciprocal of the number?

Suppose the numbers are x and y Then the sum of their reciprocals is 1/x + 1/y = y/xy + x/xy = (y+x)/xy = 10/20 = 1/2


Find the sum of the prime factors of 20?

Factors for 20 are: 1, 2, 4, 5, 10, 20 Prime Factors: 2, 5 sum of prime factors = 2 + 5 = 7


What is the sum of the numbers 21 to100?

Without just going and doing the addition, you can use this formula:Sum of 1 to N is: (N+1)*N/2. So take sum of [1 to 100], then subtract off the sum of [1 to 20], and you'll have left the sum [21 to 100].Sum [1-100] = (100+1)*100/2 = 5050. Sum[1-20] = (20+1)*20/2 = 210.So 5050 - 210 = 4840


What is the sum of all factors of 20?

Factors of 20 are 1, 2, 4, 5, 10 and 20. And their sum is 1 + 2 + 4 + 5 + 10 + 20 = 32.


What is the sum of the squares of the first 20 natural number1 to 20?

The sum of the squares of the first 20 natural numbers 1 to 20 is 2,870.


How much is 1 score?

Find the 2 numbers whose difference is two and whose sum is 480.


How do you find sum of a number?

You find the sum of two numbers by adding the two together. Example: The sum of 1 + 1 is 2


What is the sum 20 minus 19?

the answer is 20-19=1


Find the sum of 5 percent of 400.00?

20


Write a programme in BASIC to find the sum of first fifty numbers entered through the keyboard?

10 for t = 1 to 50 20 input a 30 c = c + a 40 next t 50 print c