Median of a data set
Sort the data first; the median is the middle value (or the average of the two middle values when n is even). The most common ALEKS slip is skipping the sort and reading off the middle of the unsorted list.
A short walkthrough explaining what you need to know and how to solve this question type lands here once it's recorded.
ALEKS randomizes the numbers each attempt, but the question shape stays the same. Here are three example versions you might see.
A group of 12 students from the same middle school have been asked to record how much time they spent this morning traveling from home to school. Here are the results (in minutes):
8, 9, 10, 10, 11, 12, 4, 14, 4, 7, 14, 13
Find the median travel time for that group of students.
A teacher asked 11 students to record how many hours they spent studying over the weekend:
3, 7, 2, 5, 9, 6, 4, 8, 5, 3, 10
Find the median number of study hours.
A grocery shopper records the prices (in dollars) of 8 different fruits she bought this week:
1.20, 0.85, 2.40, 1.50, 1.80, 0.95, 3.10, 1.65
Find the median price.
if n is even, average the two middle values
Sort the data from smallest to largest.
Given: 8, 9, 10, 10, 11, 12, 4, 14, 4, 7, 14, 13. Sorted:
n = 12, so n is even. The two middle values are in positions 6 and 7.
Average the two middle values.
Positions 6 and 7 are both 10:
When the two middle values happen to be the same, the average is just that value — no calculation needed beyond confirming.
Try a different data set. Same recipe: sort first, then read the middle.
Sort the data and find the median.
Now an even-count data set.
You've walked through the whole problem.
That's the move. ALEKS will give you a different version with different numbers — but the steps are the same.