# AI-Assisted Product Research — Using Claude for Discovery

<!-- hint:slides topic="AI-assisted research: use cases, prompting for synthesis, validation techniques, and ethical considerations" slides="5" -->

## AI as a Research Amplifier

AI doesn't replace human judgment—it amplifies it. Product research still requires real users, real data, and real empathy. AI helps you work faster: synthesize feedback, structure analysis, generate hypotheses, and draft frameworks.

Think of Claude as a **research assistant**, not a substitute for discovery.

## Use Cases

| Use Case | How AI Helps | Human Still Does |
|----------|--------------|------------------|
| **Competitor analysis** | Summarize feature matrices, positioning, reviews | Validate with real usage, interpret nuance |
| **User feedback synthesis** | Cluster themes, extract quotes, identify patterns | Conduct interviews, sense emotional tone |
| **Market sizing** | Structure TAM/SAM/SOM, suggest data sources | Validate assumptions, fill gaps |
| **Persona generation** | Draft personas from aggregated data | Ground in real user research |
| **Survey analysis** | Code open-ended responses, surface themes | Design survey, interpret outliers |

## Prompting Techniques for Research

### 1. Provide Context

Give Claude domain, audience, and constraints upfront.

```
I'm a PM at a B2B SaaS company. Our product helps sales teams track deals.
I'm researching how mid-market sales managers (50–200 reps) prioritize their week.
Keep responses focused on that segment.
```

### 2. Ask for Structured Output

Request formats that are easy to act on: tables, bullet lists, JSON.

```
Synthesize these 10 user feedback quotes into a table: Theme | Representative Quote | Frequency
```

### 3. Iterate

Use follow-ups to refine: "Narrow to pain points only," "Add a confidence score," "Reorder by severity."

### 4. Request Citations and Assumptions

Ask Claude to distinguish what it inferred vs what you provided.

```
For each insight, label: [From your data] or [Inferred assumption]. 
Flag any assumption that needs validation.
```

## Validating AI-Generated Insights

AI can be confidently wrong. Validation steps:

1. **Trace to source** — Can you point to user data that supports this?
2. **Check for bias** — Does the model over-weight common patterns and miss edge cases?
3. **Triangulate** — Does it match qualitative interviews or quantitative data?
4. **Pressure-test** — What would disprove this? What evidence would you need?

## Combining AI Research With Real Interviews

```mermaid
flowchart LR
  A[AI Synthesis] --> B[Themes & Hypotheses]
  C[User Interviews] --> B
  B --> D[Validated Insights]
  D --> E[PRD / Strategy]
```

**Workflow:**
1. Use AI to pre-synthesize existing feedback → draft themes.
2. Use those themes to shape interview guides.
3. Run interviews; capture raw notes.
4. Use AI to cluster and extract from notes.
5. Human validates: Do the clusters match what you heard? Refine.

## Ethical Considerations

- **Privacy** — Don't paste PII (emails, names) into AI. Anonymize first.
- **Confidentiality** — Don't upload internal roadmaps or unreleased plans to public AI.
- **Attribution** — AI summaries are aids, not sources. Don't claim AI output as primary research.
- **Bias** — AI reflects training data. Watch for demographic or segment bias in synthesis.

## Limitations to Watch For

| Limitation | Mitigation |
|-----------|------------|
| **Hallucination** | Always verify facts, URLs, statistics |
| **Recency** | Check model cutoff; supplement with fresh data |
| **Over-generalization** | Ask for segment-specific views; validate with real users |
| **Missing nuance** | AI smooths over edge cases; manual review for outliers |
| **Anchoring** | Don't let AI themes replace your own reading of raw data |

## AI-Augmented Research Workflow

```mermaid
flowchart TB
  subgraph Input
    I1[Raw feedback]
    I2[Interview notes]
    I3[Competitor pages]
  end
  
  subgraph AI
    A1[Synthesis]
    A2[Theme extraction]
    A3[Structured output]
  end
  
  subgraph Human
    H1[Validate]
    H2[Interview]
    H3[Decide]
  end
  
  I1 --> A1
  I2 --> A1
  I3 --> A2
  A1 --> A3
  A3 --> H1
  H1 --> H2
  H2 --> H3
```

1. **Gather** — Raw data (feedback, notes, competitor info)
2. **AI Synthesis** — Themes, tables, hypotheses
3. **Validate** — Human checks against sources
4. **Interview** — Fill gaps, test hypotheses
5. **Decide** — PRD, prioritization, strategy

---

AI makes you faster; it doesn't make you right. Use it to scale your analysis, then validate with real users and real data.
