Answer: 3.5
=========================================
Step-by-step explanation:
Start by sorting the values from smallest to largest. This is known as ascending order. The original set {3, 5, 7, 4, 3, 1} will sort to {1, 3, 3, 4, 5, 7}
After the values are sorted, we will look at the middle most value to find the median. Because there are six items in this data set, the median number is between slot 3 and slot 4. Note how the sorted data set breaks down into
{1, 3, 3} and {4, 5, 7}
we see that 3 and 4 are tied for the middle most, so the median must be 3.5 which is halfway between 3 and 4.