How do you find the Median of a set of numbers.

Sort and find the middle number

Add them and divide by how many numbers

Subtract the Minimum
value from the Maximum value

Find the middle value of the first half of the sorted values

Find the middle value of the second half of the sorted values

Respuesta :

Answer:

Arrange your numbers in numerical order.

Count how many numbers you have.

If you have an odd number, divide by 2 and round up to get the position of the median number.

If you have an even number, divide by 2. Go to the number in that position and average it with the number in the next higher position to get the median.

Step-by-step explanation: