InterviewSolution
Saved Bookmarks
| 1. |
What is median formula |
|
Answer» If n is an odd no. ----(n+1)/2 th if n is an even no. ---- (n/2)th and (n/2 +1) But if you are 10 numbers, which are odd . So we have the formula I.en/2 and n/2+1. I.e.10 / 2 =5th and 10/2+1= 6th termsFirstly you can write them in orderIf your 5th term and the 6th term are 3and 5 then you will write them as:(3+5)/2 = 8/2So your answer is 4 The middle number; found by ordering all data points and picking out the one in the middle (or if there are two middle numbers, taking the mean of those two numbers). Example: The median of 4, 1, and 7 is 4 because when the numbers are put in order (1 , 4, 7) , the number 4 is in the middle. |
|