Reminder and re-education timing can directly borrow the spaced-repetition scheduling curve
Aliases: adaptive reminder scheduling · re-education timing
What it is
Spaced-repetition algorithms were originally built for flashcard-style learning, but the problem they actually solve is more general: how to decide "when to remind someone again" without knowing their current memory strength. This scheduling logic transfers cleanly outside of learning contexts — any system that needs to decide whether and when to proactively remind a user about something, or re-teach an action they once learned but may now be rusty on, can borrow the spaced-repetition curve directly rather than inventing a new reminder cadence from scratch.
Why it happens
Putting the earlier principles together — intervals should expand as memory strengthens, review should land right before forgetting, premature repetition has no payoff — amounts to maintaining a dynamic memory-strength state for every user-knowledge pairing, and letting the timing of the next touchpoint follow that state rather than a calendar. Transplanting this into a reminder system means treating "did the user recently and independently use this feature correctly" as the equivalent of a "successful review" signal in spaced repetition, extending the next reminder's interval accordingly; and treating "the user hit an error, asked for help, or made a clear mistake" as the equivalent of a "failed review" signal, shortening the interval and resetting it. Reminder scheduling then becomes a process that adapts itself to observed evidence, rather than a fixed timeline identical for every user and every piece of content.
Where it stops holding
Whether this transplant works depends on finding a reliable signal to stand in for the explicit "I remember / I don't" feedback that spaced-repetition algorithms normally get from a direct user response. If the only available signal is a noisy behavioral proxy — such as whether the user opened the help documentation — it can mistake a lucky guess or a workaround for "mastered," pushing the interval out further than is actually safe. For scenarios where failure is costly and the task is rare (an annual tax-filing procedure, a safety-critical emergency action), pursuing efficiency by riding close to the forgetting boundary isn't worth it — it's better to remind more often than the theoretical optimum interval would suggest, keeping a safety margin, rather than chasing the fewest possible reminders in cases like these.
Applying it
- Treat each user-plus-knowledge/feature pairing like a spaced-repetition card: set a base interval after the first successful use; each time an independent, successful reuse is observed, extend the next check-in/reminder interval by some factor (e.g., doubling it); on any observed error, help request, or clear mistake, reset the interval back to a short starting value.
- Trigger the next reminder or "do you still remember this" check near the point where the current interval is about to expire, rather than on an arbitrary fixed calendar date.
- For high-stakes, very-low-frequency critical workflows, don't apply the same efficiency-seeking interval curve — use a more conservative, more frequent reminder cadence than the theoretical optimum instead.
- Validation: compare this adaptive schedule against a fixed-cadence scheme with a comparable total reminder count, checking whether long-term task success rate is equal or better while also comparing total interruption count — the adaptive scheme should achieve comparable or better success with a similar or lower interruption count. If it doesn't, the signal being used to judge "success/failure" is unreliable and needs fixing before the interval parameters are tuned further.
Related
- Same group: A6.15.1 The optimal spacing interval should expand as memory strength grows, not stay fixed · A6.15.2 A prompt or review is most effective right before forgetting occurs, but not after · A6.15.3 Reviewing too early has low marginal benefit because forgetting hasn't yet begun
- Nearby: A6.19 Prospective memory and forgetting to-dos · A5.14 Interruption timing and break points
- Search terms:
spaced repetition scheduling·adaptive reminders·re-education timing