Median

From ScienceZero
Revision as of 04:51, 13 March 2007 by Bjoern (Talk | contribs) (New page: The median value of a list of numbers is the number in the middle of the sorted list. If there is an even number of values then the median is the average of the two values in the middle. ...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The median value of a list of numbers is the number in the middle of the sorted list. If there is an even number of values then the median is the average of the two values in the middle.

Sample values: 4 3 2 6 4 2 7
Sorted values: 2 2 3 4 4 6 7
Median value:        4


Sample values: 4 3 2 6 4 2
Sorted values: 2 2 3 4 4 6
Median value:      3.5