So before anything, rearrange the data so that it's in ascending order: {2,3,9,12,13,14,16,17}
Next, the minimum and maximum are as they seem: the smallest and largest numbers in the data. Looking at our data, <u>2 is our minimum and 17 is our maximum.</u>
Next, to find the median, find the number that is in the middle of the data set. If there isn't one number in the middle, find the average of the two middle numbers to get your median:
<u>The median is 12.5.</u>
Next, to find the first quartile, or the lower quartile, find the "median" of the numbers to the left of the median.
<u>The first quartile is 6.</u>
Next, to find the third quartile, or the upper quartile, find the "median" of the numbers to the right of the median.
<u>The third quartile is 15.</u>