We have to summary some statistics measures about the player's height.
We first start listing and sorting the data for the heights:
173 --> Min
183
183
183 --> Q1
185
185
185
185 --> Median (Q2)
185
185
188
188 --> Q3
188
188
193 --> Max
The number of data points is 15.
The minimum value is 173 cm.
Then, the Q1 will correspond to the value for which 25% of the data is below this value.
For 15 data points, 25% will correspond to 3.75. Then, we can consider the Q1 to be the fourth point from least to greatest.
Then, its value is Q1 = 183.
The median divides the data set in two halves. Then, as we have 15 data points, the 8th data point will correspond to the median.
Then, the median is Q2 = 185.
The Q3 is the data point for which 75% of the data is below that value. In this cas correspond to the 12th value: Q3 = 188.
Lastly, the maximum value is the last of the sorted list: Max = 193.
Answer:
Minimum = 173 cm
Q1 = 183 cm
Median = 185 cm
Q3 = 188 cm
Maximum = 193 cm