Given the following data set, find the Quartiles: {1, 1, 4, 5, 6, 6, 7, 8, 10, 11, 13, 14, 15, 16}
Here, Data arranged in Ascending order.
Then,
We find out Quartiles..
Qk = size of {k * (n+1)/4}th item. ...........Where, k = 1,2,3
First Quartile = Q1 =
Q1 = size of {1 * (14+1)/4}th item.
Q1 = size of {3.75}th item.
Q1 = size of {3}rd item + 0.75 * (size of 4th item - size of 3rd item)
Q1 = 4 + 0.75 * (5-4)
Q1 = 4.75
Find: Second Quartile = Q2 = Median:
Median = size of {(n+1)/2}th item.
Q2 = size of ({14+1)/2}th item.
Q2 = size of {7.5}th item.
Q2 = size of {7}th item + 0.5 * (size of 8th item - size of 7th item)
Q2 = 7 + 0.5 * (8-7)
Q2 = Median = 7.5
Third Quartile: Q3 =
Qk = size of {k * (n+1)/4}th item.
Q3 = size of {3 * (14+1)/4}th item.
Q3 = size of {11.25}th item.
Q3 = size of {11}th item + 0.25 * (size of 12th item - size of 11th item)
Q3 = 13 + 0.25 * (14-13)
Q3 = 13.25
Get Answers For Free
Most questions answered within 1 hours.