InterviewSolution
Saved Bookmarks
| 1. |
Find the median of 9, 25, 18, 15, 6, 16, 8, 22, 21. |
|
Answer» The value of the middle-most observation is called the median of the data. First arrange the given numbers in ascending order, 6, 8, 9, 15, 16, 18, 21, 22, 25 Here n = 9, which is odd. Where, n is the number of the given number. ∴median = value of ½ (n + 1)th observation. = ½ (9 + 1) = ½ (10) = 10/2 = 5 Then, value of 5th term = 16 Hence, the median is 16. |
|