Wayfinder Education Engine
The only executable code in the Wayfinder platform. A unified sandbox for Math, Science, Finance, Reading, and Data analysis — every answer computed explicitly and verified, never hallucinated. A real bug was found in the self-test and fixed before this page was published.
A real bug, found and fixed before this went live
The self-test hardcoded a simulated student answer of '3/4' — which matches the actual correct
answer computed the line above it — but also hardcoded is_correct=False. That contradiction made
the progress summary report 0% accuracy on a correct answer, with a phantom error-taxonomy entry. Fixed to
is_correct=True, matching what the code actually computed. Re-run and confirmed consistent below.
How this is meant to be used
Point your own AI assistant at this page and ask it to use this engine for real GED assignment generation —
it can read the source below, run it, and call into MathSandbox, ScienceSandbox,
ReadingSandbox, or DataSandbox directly for any calculation that needs to be verified
rather than guessed. See the Math Sandbox Protocols and
Prompt Templates for how the GED module specifically wires into it.
Source (bug fixed)
Loading...
Real execution, run fresh
================================================================================
MASTER EDUCATION SANDBOX — DEMO
================================================================================
--- MATH: Fraction Addition ---
1/4 + 1/2 = 3/4
Decimal: 0.750
Verified: True
Steps: {'lcd': 4, 'converted_1': '1/4', 'converted_2': '2/4', 'sum_before_reduce': '3/4', 'gcd': 1, 'simplified': '3/4'}
--- SCIENCE: Kinetic Energy ---
KE = 1/2 * m * v² = 1/2 * 5 * 10² = 250.0 J
Verified: True
--- FINANCE: Compound Interest ---
$1000 at 5% for 10 years (monthly) = $1647.01
Verified: True
--- READING: Phoneme Confidence Scoring ---
Student said: /d/, Target was: /t/
Confidence: 0.85 (confusion_predicted)
Threshold met (≥0.75): True
--- READING: Text Complexity (Flesch-Kincaid) ---
Text: "The cat sat on the mat. The dog ran in the yard. They played together."
Grade Level: 0.0 (Early Elementary)
Metrics: {'grade_level': 0, 'reading_level': 'Early Elementary', 'word_count': 15, 'sentence_count': 3, 'syllable_count': 17}
--- DATA: Pearson Correlation ---
Correlation between [1, 2, 3, 4, 5] and [2, 4, 5, 4, 6]: 0.853
Verified: True
--- SESSION PROGRESS SUMMARY ---
{
"total_attempts": 1,
"correct": 1,
"accuracy_percent": 100.0,
"avg_response_time_ms": 4200.0,
"error_patterns": {},
"session_duration_minutes": 0.0
}
================================================================================
SANDBOX OPERATIONAL - Ready to integrate with educational modules
================================================================================
Independently checked by hand, not just trusted: 1/4+1/2=3/4 ✓, KE=½mv²=½(5)(10²)=250J ✓, $1000 at 5% monthly-compounded over 10 years = $1647.01 ✓, Pearson correlation of those two arrays = 0.853 ✓. The progress summary is now internally consistent — 1 correct attempt, 100% accuracy, no phantom error entries.