I hear there is a shorter method of finding the median in an array without having to write out all the values in an array, please advise
in Statistics Answers by

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register.

1 Answer

Question: shortcut to finding the median without a computer.

The median is the middle value.

If you have an array of values, then the median is that value that separates the upper half of the array from the lower half.

If the number of elements in your array A[ ] is odd, i.e. N = 2n+1, then the median, M = A[n+1]

If the number of elements in your array A[ ] is even, i.e. N = 2n, then the median, M = (A[n-1]+A[n+1])/2

i.e. M is the mean of the two middle values.

If you don't want to use a computer, then you will have to visually inspect the arrray.

Once you know the number of elements in the array, N, then you will have to manually count along until you reach the middle element, which is your median (or two middle ements, the mean of which is your median)

by Level 11 User (81.5k points)

Related questions

3 answers
asked Mar 9, 2014 in Statistics Answers by rida | 1.2k views
0 answers
0 answers
1 answer
1 answer
Welcome to MathHomeworkAnswers.org, where students, teachers and math enthusiasts can ask and answer any math question. Get help and answers to any math problem including algebra, trigonometry, geometry, calculus, trigonometry, fractions, solving expression, simplifying expressions and more. Get answers to math questions. Help is always 100% free!
87,516 questions
100,279 answers
2,420 comments
732,294 users