answersLogoWhite

0

to find the average (a.k.a mean) of any set of numbers you add all of the numbers up, then divide by however many numbers there are. for ex: 2,7,5,9,4 1st step: 2+7+5+9+2= 25 2nd step: 25 divided by 5= 5 average equals=5

User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Math & Arithmetic

How to write an algorithm that accepts five numbers and displays the sum and average of the numbers?

1.Start Algorithm 2.Enter first number 3.Enter second number 4.Enter third number 5.Enter fourth number 6.Enter fifth number 7.Add five number 8.display five number / 2 9.Display result 10.End Algorithm


Is an average of a set of numbers the same as the average of the averages of the subsets of numbers?

No, it is not. Example: the average of (5 and 7) is 6, and the average of (50, 60 and 70) is 60, but if we add all five numbers we have 192, so the overall average is 192 divided by 5 = 38.4 and the reason for that is we have more and bigger numbers in the second set.


What is the arithmetic mean of the sum of the first five prime numbers and the sum of the cubes of the first three prime numbers?

The sum of the first five prime numbers is 28. The sum of the cubes of the first three prime numbers is 160. The average of 28 and 160 is 94.


How do you write a pseudocode that accepts five numbers and displays the sum and average of the numbers?

To write pseudocode that accepts five numbers and displays their sum and average, you can follow these steps: Initialize a variable sum to 0. Loop five times to accept input for each number, adding each to sum. After the loop, calculate the average by dividing sum by 5. Display both the sum and the average. Here’s a simple representation: BEGIN sum = 0 FOR i FROM 1 TO 5 DO INPUT number sum = sum + number END FOR average = sum / 5 OUTPUT "Sum: ", sum OUTPUT "Average: ", average END


What is the sum of the five consecutive even numbers whose average is 12?

8 10 12 14 16

Related Questions

When the pachymeter give you five numbers how do you get the average of these numbers?

I don't know what a pachymeter is. But here's how to get the average of any five numbers, no matter where they came from: -- Add up all five numbers. -- Divide the sum by 5 . The quotient is the average of the five numbers.


What are the five numbers if the average of five consecutive odd numbers is 745?

741,743,745,747,749


How do you find the sum of five numbers if the average of the five numbers is 790.6?

The average of a group of numbers is equal to the sum of the numbers divided by the number of numbers. If you want to find the sum of the five numbers, just multiply 790.6 by 5 to get the sum, which is 3953


What is a design a flow chart that will compute the average of 5 numbers?

A flow chart is a diagram that represents the steps to finding a solution to a problem. To find the average of five numbers, all five must be added together, then the end number must be divided by 5. The flow chart will show these steps in boxes.


What is the average of the first five composite numbers?

7.4


The sum of 5 numbers is 200 what is the average of the numbers?

The average of five numbers whose sum is 200 will always be 40, no matter which numbers you choose. When finding an average, you add up the numbers (find the sum of the set), then divide by the number of terms. In this case, the sum will always be 200, and there will always be five terms. This will always result in an average of 40. Ex/ 1 + 2 + 3 + 4 + 190 = 200 200 / 5 = 40 40 + 40 + 80 + 24 + 16 = 200 200 / 5 = 40


How do you compile and execute a java program which finds out the highest of any five numbers?

it will be destroyed.


What is the probability of finding five numbers of six digits chosen randomly from 100000 to 999999?

There is 100% chance.


The average of 5 numbers is 82 The average of 4 of the numbers is 80 what is the fifth numbers?

To find the fifth number, you can use the formula for finding the average of a set of numbers. The sum of the 5 numbers is 82 * 5 = 410. The sum of the 4 known numbers is 80 * 4 = 320. Therefore, the fifth number can be found by subtracting the sum of the 4 known numbers from the sum of all 5 numbers: 410 - 320 = 90. So, the fifth number is 90.


How to write an algorithm that accepts five numbers and displays the sum and average of the numbers?

1.Start Algorithm 2.Enter first number 3.Enter second number 4.Enter third number 5.Enter fourth number 6.Enter fifth number 7.Add five number 8.display five number / 2 9.Display result 10.End Algorithm


Average of a set of number?

Just add all the numbers, then divide by the size of the set. For example, if you have a set of five numbers, add all of them, then divide the result by five.


How do you write a c program to get the average of five numbers?

If the five numbers need to be read from command-line, you'll have to parse the arguments (the function atoi() will come in handy there). If the five numbers are known at compile-time, you'll get a program like below: #include <stdio.h> int main(int argc, char **argv) { int a = 10; int b = 20; int c = 30; int d = 40; int e = 50; int result = (a + b + c + d + e) / 5; printf("The average of %d, %d, %d, %d and %d is %d\n", a, b, c, d, e, result); }