This Machine Learning concept is the current idea: keep the same invariant visible across Intuition, Math, Code, Interactive Demo.
Machine Learning
Learner Outcome Experiment Design: Outcomes, Power, Retention, Guardrails
Design adaptive-learning experiments by choosing a primary outcome, delayed retention check, power/MDE target, subgroup plan, attrition rule, ethics guardrails, and rollout gate.
Concept Structure
Learner Outcome Experiment Design: Outcomes, Power, Retention, Guardrails
Start with the picture, metaphor, or geometric mechanism.
Make the objects explicit and connect them with notation.
Mirror the equations with runnable implementation details.
Manipulate the mechanism and watch the idea respond.
Learner Contract
What this page should let you do.
3 prerequisites listed; refresh them before leaning on the math or code.
Explain the mechanism, trace the main notation, and test one prediction in the live demo.
Read the intuition before the notation; the math should name a mechanism you already felt.
Follow this edge after making one prediction here; the next page should reuse the result, not restart the route.
Claim/source review status
Substantive review recorded
2/2 claims have bounded review metadata; still check caveats and source scope.Metadata-derived; review may be AI-assisted. Not a human certification.01
Intuition
Build the mental picture first so the rest of the page has something to attach to.
Policy evaluation asks whether a candidate adaptive-learning policy looks better than the current one. Learner outcome experiment design asks a more basic question:
What evidence would make us believe this actually helped learners?
That question has to be answered before rollout. Otherwise the system can optimize toward whatever is easiest to measure: clicks, completion, immediate correctness, or engagement. Those can be useful secondary signals, but they are not the same as durable learning.
A strong learner-outcome plan keeps these lanes separate:
- primary outcome: the one result the experiment is powered to detect,
- outcome timing: baseline, immediate post-test, delayed retention, and any longer follow-up,
- instrument: the assessment, rubric, or administrative measure used consistently across arms,
- direction: whether higher, lower, or calibrated is better,
- minimum detectable effect: the smallest meaningful difference the study can reliably see,
- subgroup plan: which learner slices are pre-registered and large enough to inspect,
- attrition rule: how missing outcome data will be monitored and handled,
- guardrails: consent, risk, equity, data minimization, accessibility, and support burden,
- rollout gate: the exact conditions that must pass before expansion.
The habit is simple and easy to skip: design the learning claim before collecting the launch evidence.
02
Math
Translate the story into symbols, assumptions, and a derivation you can inspect.
Let be randomized assignment to control or treatment. Let be the outcome for learner at timepoint .
The primary estimand should name both the outcome and the time:
For a learning system, is often not the immediate post-test. A delayed-retention timepoint can matter more:
With equal treatment/control allocation, a compact standard-error approximation is
where and are post-attrition sample counts and is the outcome standard deviation.
A rough two-sided 80 percent power minimum detectable effect is
Subgroups should be declared before the result is known. For a subgroup , inspect
but do not let an unplanned slice replace the primary outcome.
A compact rollout gate is:
The gate is intentionally conjunctive. A large average lift cannot repair a missing consent path, an underpowered design, or a primary outcome that was chosen after looking at results.
03
Code
Keep the implementation aligned with the notation so the algorithm is legible.
from math import erf, sqrt
def normal_cdf(x):
return 0.5 * (1.0 + erf(x / sqrt(2.0)))
def design_power(total_n, attrition, outcome_sd, target_mde):
effective_n = total_n * (1.0 - attrition)
n_t = effective_n / 2.0
n_c = effective_n / 2.0
se = outcome_sd * sqrt((1.0 / n_t) + (1.0 / n_c))
mde_80 = (1.96 + 0.84) * se
power = normal_cdf((target_mde / se) - 1.96)
return round(power, 3), round(mde_80, 3)
plans = {
"ready": {
"total_n": 2400,
"attrition": 0.10,
"outcome_sd": 0.42,
"target_mde": 0.05,
"delayed_retention": True,
"subgroups_preregistered": True,
"guardrails": "pass",
},
"immediate_only": {
"total_n": 2400,
"attrition": 0.08,
"outcome_sd": 0.42,
"target_mde": 0.05,
"delayed_retention": False,
"subgroups_preregistered": True,
"guardrails": "pass",
},
}
for name, plan in plans.items():
power, mde_80 = design_power(
plan["total_n"], plan["attrition"], plan["outcome_sd"], plan["target_mde"]
)
ready = (
power >= 0.8
and plan["delayed_retention"]
and plan["subgroups_preregistered"]
and plan["guardrails"] == "pass"
)
print(name, power, mde_80, ready)
The witness does not claim the experiment is solved. It shows the shape of a design review: compute what the study can detect, then refuse to treat power as the only gate.
04
Interactive Demo
Use direct manipulation to connect the explanation to a moving system.
Use the Outcome Design Lab to predict the right experiment-design move before the proof unlocks:
- Outcome: decide whether the primary outcome and timepoint make a durable learning claim.
- Power: decide whether the sample can detect the minimum meaningful effect.
- Retention: decide whether immediate gains need a delayed check.
- Subgroups: decide whether slices are pre-registered and large enough.
- Guardrails: decide whether consent, data, risk, and equity gates allow the study to proceed.
Before reveal, exact sample counts, power, MDE, attrition, subgroup cell sizes, and rollout decisions stay locked. After reveal, inspect the design ledger and decide whether the experiment should run, be resized, gain a delayed-retention measure, pre-register subgroup slices, repair attrition handling, or stop on a learner-risk gate.
Live Concept Demo
Explore Learner Outcome Experiment Design: Outcomes, Power, Retention, Guardrails
The stage is code-native and interactive. Use it to test the explanation against the mechanism.
Manipulate one control and predict the visible change.
Commit to what Learner Outcome Experiment Design: Outcomes, Power, Retention, Guardrails should make visible before reading the result.
After The First Pass
Turn the concept into an inspected object.
Once the invariant is visible in the intuition, math, code, and demo, use these panels to inspect the mechanism visually, check source support, practice the idea, and attach a grounded research question.
Mechanism Storyboard
See the idea move before the page explains it
Design adaptive-learning experiments by choosing a primary outcome, delayed retention check, power/MDE target, subgroup plan, attrition rule, ethics guardrails, and rollout gate.
Start with the picture, metaphor, or geometric mechanism.
Before reading further, choose the kind of change Learner Outcome Experiment Design: Outcomes, Power, Retention, Guardrails should make visible.
Visual Inquiry
Make the image answer a mathematical question
Design adaptive-learning experiments by choosing a primary outcome, delayed retention check, power/MDE target, subgroup plan, attrition rule, ethics guardrails, and rollout gate.
Which visible object should carry the first intuition?
Pick the cue that should make Learner Outcome Experiment Design: Outcomes, Power, Retention, Guardrails easier to reason about before the page gives the answer.
Source Grounding
Canonical references for the mechanism on this page.
Primary education-evidence standard for study review, outcome standards, attrition, baseline equivalence, and reporting.
Open sourceSupport for eligible outcome domains, independent measures, consistent measurement, and practically meaningful benchmarks.
Open sourceSupport for randomized online experiments, clear evaluation criteria, statistical power, sample size, and trustworthy launch decisions.
Open sourceSupport for power, MDES, sample-size, multi-level RCTs, multiple outcomes, and sensitivity to assumptions in education experiments.
Open sourceSupport for delayed retention checks and for treating assessment timing as part of the learning claim.
Open sourceSupport for respect for persons, beneficence, justice, informed consent, risk-benefit assessment, and fair subject selection.
Open sourceClaim Review
Design adaptive-learning experiments by choosing a primary outcome, delayed retention check, power/MDE target, subgroup plan, attrition rule, ethics guardrails, and rollout gate.
Claims without a substantive review badge still need exact source-support review.
wwc-2022-procedures-standards, wwc-2025-study-review-protocol, kohavi-2009-controlled-experiments, hunter-2024-pump-power, roediger-2006-test-enhanced-learning, belmont-report
Use equations, runnable code, and demos to check whether the source support is operational.
The references support pre-specifying valid outcome domains and measures, distinguishing immediate checks from delayed retention, and treating missing outcomes as part of study credibility.
Sources: What Works Clearinghouse Procedures and Standards Handbook, Version 5.0, What Works Clearinghouse Study Review Protocol, Version 5.1, Test-Enhanced Learning: Taking Memory Tests Improves Long-Term RetentionThe page teaches a compact design contract for adaptive-learning experiments; it does not replace a psychometric validation, IRB review, or full statistical analysis plan.A bounded review summary is present; still check caveats and exact reference scope.Checked WWC Handbook and Study Review Protocol for eligible outcome domains, face validity, independent measures, consistent measurement, baseline equivalence, and attrition framing; checked Roediger/Karpicke for the distinction between immediate and delayed retention. Oracle/GPT Pro review remains pending because the correct Chrome/Oracle lane is not attachable from this workstation.
Reviewer: codex-local-primary-reference-audit; reviewed 2026-07-05The references support power and sample-size planning, multiple-outcome sensitivity, randomized experiment criteria, attrition and subgroup caution, and ethical risk-benefit gates.
Sources: Controlled Experiments on the Web: Survey and Practical Guide, PUMP: Estimating Power, Minimum Detectable Effect Size, and Sample Size When Adjusting for Multiple Outcomes in Multi-Level Experiments, The Belmont Report, What Works Clearinghouse Procedures and Standards Handbook, Version 5.0The local power arithmetic is a teaching approximation with fixed variance and equal allocation; production designs may need clustering, covariates, sequential monitoring, multiplicity adjustment, and formal review.A bounded review summary is present; still check caveats and exact reference scope.Checked controlled-experiment practice for randomized online experiments, evaluation criteria, power, and sample size; checked PUMP for MDES and power under multiple outcomes in education RCTs; checked Belmont for consent, risk-benefit, and fair participant selection.
Reviewer: codex-local-primary-reference-audit; reviewed 2026-07-05Source support candidates
reference 2022What Works Clearinghouse Procedures and Standards Handbook, Version 5.0Primary education-evidence standard for study review, outcome standards, attrition, baseline equivalence, and reporting.
reference 2025What Works Clearinghouse Study Review Protocol, Version 5.1Support for eligible outcome domains, independent measures, consistent measurement, and practically meaningful benchmarks.
paper 2009Controlled Experiments on the Web: Survey and Practical GuideSupport for randomized online experiments, clear evaluation criteria, statistical power, sample size, and trustworthy launch decisions.
paper 2024PUMP: Estimating Power, Minimum Detectable Effect Size, and Sample Size When Adjusting for Multiple Outcomes in Multi-Level ExperimentsSupport for power, MDES, sample-size, multi-level RCTs, multiple outcomes, and sensitivity to assumptions in education experiments.
Practice Loop
Try the idea before it explains itself
Design adaptive-learning experiments by choosing a primary outcome, delayed retention check, power/MDE target, subgroup plan, attrition rule, ethics guardrails, and rollout gate.
Before touching the demo, predict one visible change that should happen in Learner Outcome Experiment Design: Outcomes, Power, Retention, Guardrails.
Reveal when your model needs a nudge.
Reveal when your model needs a nudge.
Reveal when your model needs a nudge.
A concrete answer is on the canvas.
The answer names why the claim should hold.
It touches the page context or a neighboring idea.
Research Room
Attach the question to a claim, equation, code, or demo
Pick the concept, equation, source, runnable code, claim, misconception, or demo state before asking for help. The handoff keeps that page item in context.Open the draft below to save one note and next action in this browser.
Learner Outcome Experiment Design: Outcomes, Power, Retention, Guardrails
What is the smallest example that makes Learner Outcome Experiment Design: Outcomes, Power, Retention, Guardrails click without losing the math?
Local action draftNo local draft saved yetExpand only when ready to capture one local next action
This draft stays in this browser, attached to the selected learning item.
- References to inspect: attached references on this page.
- Definition, prerequisite, and contrast concept links
- The equation or runnable code that makes the concept operational
- One demo state that shows the invariant instead of a slogan
- The learner can state the mechanism in their own words
- The learner can name the prerequisite that would repair confusion
- The learner can predict how the mechanism changes under one perturbation
I am working in Continuous Function's research reading room. Object: concept - Learner Outcome Experiment Design: Outcomes, Power, Retention, Guardrails Selected item key: recorded for copy. Context: Machine Learning Page anchor: recorded for copy. Open question: What is the smallest example that makes Learner Outcome Experiment Design: Outcomes, Power, Retention, Guardrails click without losing the math? Evidence to inspect: - References to inspect: attached references on this page. - Definition, prerequisite, and contrast concept links - The equation or runnable code that makes the concept operational - One demo state that shows the invariant instead of a slogan What would resolve this: - The learner can state the mechanism in their own words - The learner can name the prerequisite that would repair confusion - The learner can predict how the mechanism changes under one perturbation Answer as a careful research tutor: stay source-grounded, separate verified evidence from assumptions, name the relevant math objects, and end with one next action.
concept/concept-notebook/machine-learning/learner-outcome-experiment-design
concept:machine-learning/learner-outcome-experiment-design