Reveal Math Student Tool

Evidence Studio

Pick a lesson, study the model, then write a clear claim with evidence, reasoning, and a reflection.

Classroom Home

Model Inspector

Model

What to Look For

    What mathematical idea can you state from this lesson?

    What numbers, labels, model parts, or patterns support it?

    Explain how the evidence proves or supports your claim.

    What do you understand better, or what question remains?

    Finish

    " + ""; var blob = new Blob(["\ufeff" + docHtml], { type: "application/msword", }); var url = URL.createObjectURL(blob); var a = document.createElement("a"); a.href = url; a.download = "Math_CER_Blueprint_" + normalizeId(lessonNumber(state.lesson)) + "_" + new Date().toISOString().slice(0, 10) + ".doc"; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(url); setStatus("Lesson blueprint document generated successfully!"); } function setStatus(message) { els.status.textContent = message; if (message) { window.clearTimeout(setStatus.timer); setStatus.timer = window.setTimeout(function () { els.status.textContent = ""; }, 3500); } } function init() { state.lessons = asArray(window.REVEAL_MATH_LESSONS); state.units = asArray(window.REVEAL_MATH_UNITS); state.clusters = asArray(window.REVEAL_MATH_CLUSTERS); state.lessons.sort(function (a, b) { return lessonNumber(a).localeCompare(lessonNumber(b), undefined, { numeric: true, sensitivity: "base", }); }); renderLessonPicker(); els.lessonSelect.addEventListener("change", function () { setLesson(Number(els.lessonSelect.value)); }); els.saveDraft.addEventListener("click", function () { saveDraft(true); }); els.downloadDocx.addEventListener("click", downloadWordBlueprint); els.copyCard.addEventListener("click", copyCard); els.printCard.addEventListener("click", function () { saveDraft(false); window.print(); }); els.clearDraft.addEventListener("click", clearDraft); els.form.addEventListener("input", function () { saveDraft(false); }); } init(); })();