To find Q1Q1Q1 (the first quartile), you’re finding the value below which 25% of your data lie.

What Q1 Means

  • Q1Q1Q1 is the 25th percentile of a data set.
  • It separates the lowest 25% of values from the remaining 75%.
  • Quartiles are used in box plots, interquartile range, and outlier detection.

Step‑by‑step method (median-of-halves)

Use this when you just have a list of numbers (test scores, survey answers, etc.).

  1. Order the data
    • Sort all values from smallest to largest.
  1. Find the median of the full data set
    • If there are nnn values:
      • If nnn is odd, the median is the middle value.
      • If nnn is even, the median is the average of the two middle values.
  1. Split into lower and upper halves
    • Lower half = all values below the median.
    • For odd nnn: do not include the median in either half.
    • For even nnn: split directly in the middle.
  1. Find the median of the lower half
    • This median of the lower half is Q1Q1Q1.

In words: Order data → find median → take the bottom half → median of that bottom half is Q1.

Formula-based position method

Another common way is to compute the position of Q1Q1Q1 first.

  1. Let nnn be the number of observations.
  2. Sort the data in ascending order.
  1. Compute the Q1Q1Q1 position with

position of Q1=n+14\text{position of }Q1=\frac{n+1}{4}position of Q1=4n+1​

(This gives you the index in the ordered list.)

  1. Interpret the position:
    • If you get a whole number (like 3), Q1Q1Q1 is that exact data point (3rd value in the ordered list).
 * If you get a decimal (like 3.25), use **interpolation** between the 3rd and 4th values.

Interpolation idea:

  • Take the lower index value + (decimal part) × (difference to the next value).

Some textbooks use 0.25×n0.25\times n0.25×n and then round up to the next integer; the idea is similar: find the value at about 25% of the way through the ordered data.

Quick worked example

Suppose your data are:
8, 3, 10, 4, 6, 12.

  1. Sort → 3, 4, 6, 8, 10, 12.
  1. Median of full set
    • n=6n=6n=6 (even), so median is average of 3rd and 4th values → (6+8)/2=7(6+8)/2=7(6+8)/2=7.
  2. Lower half
    • Lower half is 3, 4, 6.
  1. Median of lower half
    • Median of 3, 4, 6 is 4, so Q1=4Q1=4Q1=4.

This matches the “median of lower half” rule used in many statistics courses and calculators.

In a survey context

If “how to find Q1” is about survey responses (e.g., satisfaction scores 1–5), treat the numeric responses as a dataset.

  • List all numeric responses.
  • Sort them, then follow the median-of-halves or position method above.
  • Q1Q1Q1 tells you the score at which 25% of respondents are at or below that level of response (e.g., 25% of people rated 3 or lower).

Tiny 3‑step memory hook

  • Step 1: Order your data.
  • Step 2: Find the median and split off the lower half.
  • Step 3: Find the median of that lower half → that’s Q1.

If you tell me a specific data set or survey result, I can walk through the exact Q1Q1Q1 calculation for your numbers.