Skip to content

Spaced Repetition Timing

Scheduling algorithm — instantiates Resonance Tuning

Schedules each review at the expanding interval where recall is effortful but still possible, so memory is strengthened with the fewest repetitions.

Version
v1 · 2026-08-24 · History
Mechanism #
8565
Type
Scheduling Algorithm
Form family
Experiment, Test & Rehearsal
Solution family
Scheduling & Pacing
Problem family
Timing, Transition & Path-Dependence Failure
Problem subfamily
Cadence, Phase, Tempo & Recovery Alignment
Origin domain
Psychology
Also from
Cognitive Science, Computer Science & Software Engineering, Education & Pedagogy
Instantiates
Resonance Tuning

Spaced Repetition Timing places each review of a fact at the moment its memory has decayed just enough that retrieving it takes real effort but has not yet failed — the point where a successful recall does the most to reinforce the trace. It treats forgetting as a rhythm rather than an accident: every item has its own decay curve, and the mechanism estimates that curve, sets the next review just before recall would collapse, and then stretches or shrinks the interval for that specific item depending on whether the last recall was easy or hard. What makes it this mechanism and not a generic study plan is the per-item interval that expands on success and contracts on failure — it computes the receptive moment for each fact and reviews on that predicted schedule, item by item.

Example

A medical student has 2,000 anatomy and pharmacology facts to hold for a licensing exam ten weeks out. Reviewing every card every day is impossible; cramming the week before means most of it evaporates. A spaced-repetition schedule instead shows each card, grades how the recall went, and books the next showing accordingly. A drug interaction she nails cleanly might reappear in 4 days, then 10, then 25, then two months — the interval roughly doubling each time she succeeds. A muscle insertion she blanks on drops back to a 1-day interval and climbs again from there. On any given morning she sees only the ~120 cards the schedule predicts are near their forgetting edge, not the whole deck. By exam week the durable facts have widened to intervals longer than the exam horizon and have effectively dropped out of daily work, leaving her review time concentrated on the handful of stubborn items — far fewer total repetitions than a fixed daily pass, with better retention on test day.

How it works

  • Estimate each item's decay. Every card carries an ease parameter — a running estimate of how fast that particular fact fades for this learner. New or hard items are assumed to decay fast; well-learned items slowly.
  • Aim for the effortful-but-possible edge. The next interval targets the point where predicted recall probability has fallen to a chosen retention target (say ~90%), so retrieval is a struggle that strengthens the memory rather than a trivial re-read.
  • Expand on success, collapse on lapse. A clean recall multiplies the interval by the ease factor; a lapse resets the interval short and nudges the ease down, so the item is seen more often until it re-stabilizes.
  • Surface only what is due. The schedule presents each day exactly the items whose predicted window has arrived, keeping load flat instead of front- or back-loaded.

Tuning parameters

  • Target retention — the recall probability the interval aims for. Higher (95%) means more, shorter reviews and safer retention; lower (85%) means fewer reviews but more lapses. Trades total effort against forgetting risk.
  • Expansion factor — how aggressively intervals grow after a success. A larger multiplier saves repetitions but risks overshooting the window and losing the item.
  • Lapse penalty — whether a miss resets the interval to zero or merely shortens it, and how far the ease drops. Harsh penalties stabilize weak items fast but can trap easy items in short loops.
  • Daily review cap — a ceiling on cards per day. Caps protect the learner from backlog spikes but push overflow into the future, degrading timing precision.

When it helps, and when it misleads

Its strength is efficiency under scarcity: it concentrates scarce study time on the items nearest their forgetting edge and lets stable knowledge widen out of the way, exploiting the well-documented spacing effect — distributed practice retains far better than massed practice for the same total exposure.[n1] It is at its best for large bodies of discrete, retrieval-testable facts where recall itself is the goal.

Its failure mode is treating everything as a memorizable fact. Material that requires understanding — a proof, a clinical reasoning chain — gets scheduled as if rote recall of the surface would carry the concept, and the learner drills fluency they cannot transfer. The schedule can also silently accumulate a backlog: miss a few days and the due queue balloons, wrecking the timing that made it work. The classic misuse is gaming the grade — rating cards "easy" to shrink the queue — which corrupts the ease estimates the whole rhythm depends on. The guarding discipline is to compare actual recall rates against the retention target and retune the parameters when they drift, and to reserve the mechanism for content that genuinely reduces to recall.

How it implements the components

  • resonance_frequency — each item's estimated forgetting rate is the response rhythm the schedule tunes to; the ease parameter is that frequency, tracked per card.
  • response_window — the effortful-but-still-possible recall zone is the window each review is timed to land in.
  • timing_rule — the expand-on-success / collapse-on-lapse interval formula is the operational rule translating decay estimate into a next-review date.
  • retuning_trigger — a lapse is the trigger to recalibrate: it drops the ease and shortens the interval for that item until it re-stabilizes.

It does not implement readiness_signal or channel_fit — reacting to a live, observed readiness cue and choosing the delivery channel belong to Readiness-Moment Intervention; spaced repetition fires on a computed interval, not on an observed moment.

Editorial Notes

Form Classification

Form family: Experiment, Test & Rehearsal

Rationale: Spaced Repetition Timing operates as an active test, trial, simulation, drill, or rehearsal that generates evidence through a deliberate attempt or perturbation because it schedules each review at the expanding interval where recall is effortful but still possible, so memory is strengthened with the fewest repetitions.

Independent corroboration: The frozen evidence defines Spaced Repetition Timing as 'Schedules each review at the expanding interval where recall is effortful but still possible, so memory is strengthened with the fewest repetitions', so its operative form is Experiment, Test & Rehearsal.

Nearest alternative: Control, Automation & Runtime — Spaced Repetition Timing includes features of a live operational control that automatically routes, enforces, adapts, or responds during execution, but its defining operation is an active test, trial, simulation, drill, or rehearsal that generates evidence through a deliberate attempt or perturbation.

Review outcome: Independent reviewer agreement; medium confidence.

Origin Attribution

Primary origin: Psychology

Origin pattern: Single lineage

Present-day reach: Universal

Rationale: Scheduling review near the point of effortful but successful recall derives from experimental psychology of forgetting and spacing.

Related originating lineages:

Review resolution: The blind reviewers agree that psychology is the primary origin and differ only on alternate origin disagreement, domain reach disagreement. I preserve every independently explained alternate from both records rather than imposing a numeric cap. I retain single_lineage because the combined evidence shows one traceable formative lineage. The broader reach of universal records portability separately from historical provenance; encyclopedia_synthesis=false preserves the affirmative synthesis judgment where either reviewer identified one.

Review outcome: Reconciled after independent review; high confidence.

Notes

The counterintuitive move is deliberately letting recall get hard before reviewing — the "desirable difficulty" principle. A schedule tuned for comfort (short intervals, easy recalls) feels productive but wastes repetitions; the retention target should be set low enough that most reviews are a genuine struggle.

[n1] The spacing effect, first documented in Hermann Ebbinghaus's studies of his own forgetting curve, is the finding that reviews distributed over time produce far more durable memory than the same number of reviews massed together. Spaced repetition schedules are the operational exploitation of it.