Skip to content

Interleaving: Why Mixing Topics Beats Blocking

By the TrainRun Engineering Team • Updated July 2026

How mixing different concepts in practice sessions improves transfer and flexibility - and how TrainRun’s final tests weave concepts across sections.

The Blocking Trap

The most natural way to practice is in blocks: study all of Topic A until you feel comfortable, then move to Topic B, then Topic C. This approach - called blocked practice - feels productive because you quickly achieve within-session fluency. After twenty consecutive problems on the same topic, you can solve them almost automatically.

But this fluency is misleading. Blocked practice produces excellent short-term performance and poor long-term retention. When topics are mixed on a real exam - or in real life - the learner must first identify which strategy or concept applies before executing it. Blocked practice never exercises this discrimination skill, because the topic is always obvious from context.

Rohrer and Taylor (2007) demonstrated this directly: students who practiced math problems in interleaved order scored 43% higher on a delayed test than students who practiced the same problems in blocked order - despite the blocked group scoring higher during practice sessions. The practice-test paradox is stark: the method that feels worse during learning produces better outcomes on the test that matters.

What Interleaving Does to the Brain

Interleaving improves learning through two primary mechanisms:

Discrimination learning.When you encounter problems from different categories mixed together, you must identify which category each problem belongs to before selecting a solution strategy. This discrimination skill - knowing when to apply which approach - is essential for transfer to novel situations where problems don't come pre-labeled.

Contextual interference. Switching between topics introduces interference - the cognitive effort of context-switching. This interference is a form of desirable difficulty: it makes practice harder in the moment but forces deeper processing that produces more durable and flexible memories.

These mechanisms explain why interleaving particularly benefits situations requiring transfer - applying knowledge to new problems, recognizing which concept is relevant in ambiguous situations, and connecting ideas across domains.

How TrainRun Implements Interleaving

TrainRun builds interleaving into its assessment architecture at the structural level:

Concept chains in gameplay.During the runner game, concepts from different thematic chains are interleaved along the track. You don't encounter all words from one concept before seeing the next - they are mixed according to their natural appearance in the source material and the semantic timeline.

Cross-section final tests.The most explicit application of interleaving is TrainRun's final integration test. While section quizzes test concepts within their local context, the final test deliberately pulls concepts from all sections and creates questions that require connecting ideas across the full content scope:

// Final test generation: cross-section interleaving
// Concepts from ALL sections are mixed in the final assessment

const finalInput = {
  transcript: fullText,           // Entire content
  conceptKeys: allUniqueConcepts, // Concepts from every section
  isFinalTest: true,              // Signals cross-section questions
  allSectionTitles: sections.map(s => s.title),
}

// The AI generates questions that CONNECT concepts across sections:
// "How does [concept from section 2] relate to [concept from section 5]?"
// "If [principle from section 1], what would happen in [scenario from section 4]?"

// This tests TRANSFER and INTEGRATION - not just recall within context

This structure ensures learners experience both isolated practice (section quizzes, which build initial understanding) and interleaved practice (final test, which builds transfer ability). The combination of both is more effective than either alone.

When Blocking Is Better

Interleaving is not universally superior. Research suggests blocking may be more effective for:

  • Complete beginners - when you have no schema for a topic at all, blocked practice helps build initial understanding before mixing with other topics.
  • Highly dissimilar topics- interleaving benefits are largest when topics are similar enough to require discrimination. Very different topics don't benefit as much from interleaving.
  • Procedural skills in early stages - complex procedures may need blocked practice initially to automate the steps before introducing interference.

TrainRun accounts for this by keeping section quizzes isolated (blocked by section) while only the final test introduces full interleaving. This gives learners the best of both approaches: initial comprehension via blocked assessment, followed by transfer-building via interleaved assessment.

Connecting to Retrieval Practice

Interleaving and retrieval practice are synergistic. Retrieval practice strengthens individual memories; interleaving strengthens the ability to discriminate between memories and apply the right one in context. Together, they produce knowledge that is both durable (resistant to forgetting) and flexible (applicable to new situations) - the hallmarks of genuine expertise.