> ## Documentation Index
> Fetch the complete documentation index at: https://docs.userintuition.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# How many interviews do you need?

> Two questions — how common the thing is, and how confident you need to be — and the number of interviews you need.

export const SampleSizeCalculator = () => {
  const [prevalence, setPrevalence] = useState(0.2);
  const [confidence, setConfidence] = useState(0.95);
  const p = Number(prevalence);
  const c = Number(confidence);
  const needed = Math.ceil(Math.log(1 - c) / Math.log(1 - p));
  const prevalenceOptions = [{
    value: 0.5,
    label: 'About half of them'
  }, {
    value: 0.33,
    label: 'About 1 in 3'
  }, {
    value: 0.2,
    label: 'About 1 in 5'
  }, {
    value: 0.1,
    label: 'About 1 in 10'
  }, {
    value: 0.05,
    label: 'About 1 in 20'
  }];
  const field = {
    width: '100%',
    padding: '0.55rem 0.7rem',
    borderRadius: '0.5rem',
    border: '1px solid var(--border, rgba(128,128,128,0.35))',
    background: 'transparent',
    color: 'inherit',
    fontSize: '0.9rem'
  };
  const label = {
    display: 'block',
    fontSize: '0.8rem',
    fontWeight: 600,
    marginBottom: '0.4rem'
  };
  return <div style={{
    border: '1px solid var(--border, rgba(128,128,128,0.35))',
    borderRadius: '0.85rem',
    padding: '1.4rem',
    margin: '1.5rem 0'
  }}>
      <div style={{
    marginBottom: '1rem'
  }}>
        <label style={label}>How common is what you're looking for?</label>
        <select value={prevalence} onChange={e => setPrevalence(Number(e.target.value))} style={field}>
          {prevalenceOptions.map(o => <option key={o.value} value={o.value}>
              {o.label}
            </option>)}
        </select>
      </div>

      <div>
        <label style={label}>What confidence do you need in your findings?</label>
        <select value={confidence} onChange={e => setConfidence(Number(e.target.value))} style={field}>
          {[0.8, 0.9, 0.95, 0.99].map(o => <option key={o} value={o}>
              {Math.round(o * 100)}%
            </option>)}
        </select>
      </div>

      <div style={{
    marginTop: '1.4rem',
    paddingTop: '1.4rem',
    borderTop: '1px solid var(--border, rgba(128,128,128,0.25))',
    textAlign: 'center'
  }}>
        <div style={{
    fontSize: '3rem',
    fontWeight: 700,
    lineHeight: 1
  }}>{needed}</div>
        <div style={{
    fontSize: '1rem',
    fontWeight: 600,
    marginTop: '0.2rem'
  }}>
          {needed === 1 ? 'interview' : 'interviews'}
        </div>
        <div style={{
    fontSize: '0.875rem',
    marginTop: '0.7rem',
    opacity: 0.75
  }}>
          to be {Math.round(c * 100)}% confident you'd hear about something affecting{' '}
          {prevalenceOptions.find(o => o.value === p).label.toLowerCase()} of your participants.
        </div>
      </div>
    </div>;
};

Most studies are smaller than the confidence people want from them. Ten interviews feels thorough, so ten gets run — and then a finding gets treated as settled when the sample never had the power to settle it.

Two questions gets you the number you actually need.

<SampleSizeCalculator />

***

## What it's calculating

The question here is **discovery**: if something is true of a share of your participants, how likely are you to hear about it at least once?

If a problem affects a proportion `p` of the people you interview, the chance that `n` interviews surface it at least once is:

```
P = 1 − (1 − p)ⁿ
```

Turn that around and you get the number of interviews needed for a given confidence:

```
n = ln(1 − C) / ln(1 − p)
```

Nothing exotic — it's the same reasoning behind the usability-testing rules of thumb you may have run into, stated properly instead of as "five users is enough."

### Why "five users is enough" isn't

That rule assumes every problem is common. It falls apart quickly when they aren't:

| Interviews | 1 in 2 | 1 in 3 | 1 in 5 | 1 in 10 | 1 in 20 |
| ---------: | -----: | -----: | -----: | ------: | ------: |
|      **5** |    97% |    86% |    67% |     41% |     23% |
|      **8** |   100% |    96% |    83% |     57% |     34% |
|     **10** |   100% |    98% |    89% |     65% |     40% |
|     **15** |   100% |   100% |    96% |     79% |     54% |
|     **20** |   100% |   100% |    99% |     88% |     64% |
|     **30** |   100% |   100% |   100% |     96% |     79% |

Five interviews is genuinely fine for something half your users hit. For anything affecting 1 in 10, it's a coin flip — and the issues that quietly cost you customers are usually the uncommon ones.

### Interviews needed, by target confidence

| Confidence | 1 in 2 | 1 in 3 | 1 in 5 | 1 in 10 | 1 in 20 |
| ---------: | -----: | -----: | -----: | ------: | ------: |
|    **80%** |      3 |      5 |      8 |      16 |      32 |
|    **90%** |      4 |      6 |     11 |      22 |      45 |
|    **95%** |      5 |      8 |     14 |      29 |      59 |
|    **99%** |      7 |     12 |     21 |      44 |      90 |

***

## Using it well

### Count per segment, not per study

The maths applies to the group you're actually talking to. If your study covers four personas and you run 20 interviews, that's **five per persona** — so treat it as four studies of five, not one study of twenty.

Splitting a sample across segments is the most common way a study that looked adequately sized turns out not to be.

### Be honest about how common it is

You're estimating prevalence among **the people you interview**, not your whole user base. If your screener selects for people who've hit a specific problem, prevalence inside the study is much higher than in the wild — and you need fewer interviews, not more.

### Hearing it once isn't the same as sizing it

This tells you whether a theme is likely to *appear*. It doesn't tell you how big it is. One participant mentioning something means it exists; it doesn't tell you what share of your customers feel the same. If the decision depends on the size of the number rather than the existence of the problem, see below.

### More interviews still buy something

Past the point where coverage is settled, extra interviews buy depth: more ways of describing the same problem, more edge cases, better quotes, and enough repetition that you can tell a real pattern from a vivid anecdote.

***

## When you need a proportion, not a discovery

If your question is "**what percentage** of customers prefer A over B?" rather than "is there a problem here?", this calculator is the wrong tool. Estimating a proportion to within a margin of error takes far larger samples — typically several hundred — and is survey work rather than interview work.

You can still run it here: field a [panel study](/recruiting/research-panel) with a large target and structured screener questions, which come back as clean tabulated [responses](/results/calls-and-transcripts). Just size it as a survey, and budget accordingly.

<Tip>
  A common pattern is to run both: a small interview study to find out *what* the issues are, then a larger one to size the ones that matter. Discovery first is usually cheaper, because it stops you sizing the wrong thing.
</Tip>

***

## Setting your target

Once you've got a number, set it as your study target — for [panel studies](/recruiting/research-panel#recruit-from-our-panel) that's the interview count you enter when you field. Progress against it shows on your [dashboard](/managing-your-study/dashboard).

Remember that on panel studies you're only charged for interviews rated Excellent or Good, so your target is a target for *usable* interviews rather than attempts. See [Billing and credits](/resources/billing-and-credits).

***

## Frequently Asked Questions

<AccordionGroup>
  <Accordion title="Is this the same calculation as a survey sample size calculator?">
    No, and the difference matters. Survey calculators size a sample to estimate a proportion within a margin of error, which for a large population usually lands somewhere north of 380 responses. This sizes for **discovery** — whether you'd hear about something at all — which is what interview research is for and lands in the range of 10 to 30 for most studies.
  </Accordion>

  <Accordion title="What confidence level should I pick?">
    95% is the usual default. Drop to 90% or 80% for exploratory work where you're forming hypotheses rather than settling a question, and go to 99% only when being wrong is expensive.
  </Accordion>

  <Accordion title="What if I don't know how common the thing is?">
    That's normal — you're doing the research to find out. Pick the rarest thing you'd be unhappy to miss and size for that. If missing a 1-in-10 issue would be a problem, size for 1 in 10.
  </Accordion>

  <Accordion title="Does this apply to concept and prototype tests too?">
    Yes. "Would you hear about this reaction, or this point where people get stuck?" is the same question. Usability issues in particular tend to be less common than people expect, which is why prototype tests are so often under-sized.
  </Accordion>

  <Accordion title="I ran fewer interviews than this. Is my research worthless?">
    No. It means you should treat what you found as real and what you *didn't* find as unproven. A small study that surfaces a problem has surfaced a problem. What it can't support is "we looked and there's nothing there."
  </Accordion>
</AccordionGroup>
