SOLVETUTORMATH SOLVER

Instrument MI-07-182 · Statistics

Third Quartile Calculator

Some questions only care about the top slice — what score, time or value marks where the top fourth of the data begins? That's Q3.

Instrument MI-07-182
Sheet 1 OF 1
Rev A
Verified
Type 07 — Descriptive Statistics SER. 2026-07182

Q3 (75th percentile)

5.5000

Q3 = 75th percentile

The working Every figure verified twice
  1. q3 = percentile([8 values], 75) = 5.5000
Worksheet log
  1. No entries yet — change an input to log a scenario.

How this instrument works

The third quartile, Q3, is the value above which roughly a quarter of your sorted data sits. Sort your numbers ascending and Q3 marks the boundary of the top fourth — the high-scoring quarter of a class, the slowest fourth of response times, the top fourth of household incomes in a sample. Where the median splits data in half, Q3 isolates only the upper slice, which is exactly what you want when your question is specifically about the high end.

This instrument locates Q3 by linear interpolation between the two closest ranked values — the method NIST documents and the one spreadsheet software uses in its PERCENTILE.INC function: sort the data, find the rank position 1 + 0.75 x (n - 1), and interpolate between the neighbouring values when that position falls between two ranks rather than landing exactly on one. Other quartile conventions exist and can shift the answer slightly on small data sets, so this page states its method plainly.

Q3 is the number behind a lot of everyday 'top quarter' claims: a scholarship committee identifying the highest fourth of applicants by test score, a call centre flagging its slowest 25% of resolution times for review, or a sales team benchmarking what separates its top-quarter performers. Paired with Q1, it also defines the interquartile range — the width of the middle half of the data, used to spot how compressed or spread out the bulk of your values are.

r=1+0.75(n1)r = 1 + 0.75(n-1)Q3=xr+(rr)(xrxr)Q_3 = x_{\lfloor r \rfloor} + \left(r - \lfloor r \rfloor\right)\left(x_{\lceil r \rceil} - x_{\lfloor r \rfloor}\right)
n — count of values · x[i] — the i-th value in the sorted (ascending) list, 1-indexed · r — the interpolated rank position for the 75th percentile, which may fall between two ranked values rather than exactly on one.
  • Paste or type your numbers into the Data set field — commas, spaces or new lines all work.
  • Read the Q3 (75th percentile) readout — the value above which the top quarter of your entries sits.
  • Enter at least two values; the instrument needs a genuine spread to interpolate a rank position from.
  • Need Q1 as well, or all three quartiles together? This site's first-quartile and quartile calculators use the same method and return those instead.

Worked example — the eight quiz scores

Take {2, 4, 4, 4, 5, 5, 7, 9}, already sorted, n = 8. The rank position is r = 1 + 0.75 x (8 - 1) = 1 + 5.25 = 6.25, which falls between the 6th value (5) and the 7th value (7) in the sorted list.

Interpolating a quarter of the way between them: Q3 = 5 + 0.25 x (7 - 5) = 5 + 0.5 = 5.5. A quarter of these eight quiz scores sit above 5.5 — the top two scores, 7 and 9, make up that upper slice.

Questions

What exactly does the third quartile tell me?

It tells you the value above which about 25% of your sorted data sits. If Q3 of a set of exam scores is 88, roughly a quarter of students scored above 88 — it's a single threshold marking the top fourth, not a range or an average.

Is Q3 the same as the 75th percentile?

Yes, exactly the same number — 'third quartile' and '75th percentile' are two names for one cut point. Quartile language tends to show up in box-plot and basic-statistics contexts; percentile language is more general and lets you ask for any cut point, not just the quarter marks.

Why does my Q3 differ from another source's answer for the same data?

Quartiles have at least nine published conventions and can disagree on small data sets. This instrument interpolates linearly between closest ranks — the method behind Excel and Google Sheets' PERCENTILE.INC function and the one NIST documents — so a different method elsewhere explains a small gap; it doesn't mean either answer is wrong.

I need Q1 and Q3 together — should I run this twice?

You can, but the quartile calculator on this site is simpler for that: it returns Q1, the median (Q2) and Q3 together from one data entry, using the identical interpolation method as this page, so the numbers will always match.

How is Q3 different from the maximum?

The maximum is the single largest value in your data set; Q3 is a cut point above which about a quarter of the values sit, and it's almost always smaller than the maximum unless a quarter or more of your data ties for the highest value. Treating Q3 as the maximum overstates how tightly the top of your data is packed.

References