惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The bug I kept seeing in math practice: right answers tha...
yoan ante · 2026-05-29 · via DEV Community

yoan ante

I kept running into the same weird problem while helping my daughter with math.

She could get the answer right, but it took too long.

That sounds small until you watch what happens next. The new lesson is supposed to be about multi-step problems, division, fractions, or whatever the class is doing that week. But the kid is burning half their working memory rebuilding 7 x 8 in the middle of it.

So the worksheet looks like a concept problem, but the actual bottleneck is recall.

The right answer was not the whole signal

A lot of math practice treats "correct" as the full story. If the child eventually says 56, the box gets checked.

At home, that was not enough information.

There is a big difference between:

  • knowing 7 x 8 immediately
  • skip-counting up to 56
  • remembering a trick after a pause
  • guessing, checking the pattern, then landing on the right answer

Only the first one really frees the child up for the next part of the problem.

That is the part I wanted to capture when I started building Math Builders. I did not want another noisy drill screen. I wanted a small practice loop that could tell the difference between "this fact is automatic" and "this fact is technically correct, but still being rebuilt."

Why I used a 3-second threshold

The exact number is not magic. I used 3 seconds because it is a practical cutoff.

If a basic fact takes longer than that, the child may still know it, but it probably is not automatic enough to stay out of the way. That matters in real school work. Slow recall stacks up fast.

A kid can survive one slow fact. Five slow facts inside a longer problem turns into frustration.

That is where parents and teachers sometimes misread the situation. We see the struggle on the bigger assignment and start explaining the bigger concept again. Sometimes that is needed. But sometimes the child already understands the concept and the small facts underneath are stealing all the attention.

The product lesson for me

This turned into a product-design problem, not just a math problem.

If I only saved right and wrong, the app would miss the main thing I cared about. So the practice loop had to track speed and accuracy together, then keep bringing back the facts that were slow or missed.

That is basically the boring part of spaced repetition: do not make the parent or teacher manually remember which facts are shaky. Let the system keep a small review pile and make the next session predictable.

The boring part is the useful part.

A lot of kids do not need a bigger math block at home. They need a tiny one that does not turn into a fight. Two to five minutes, mixed facts, stop before everybody is annoyed, then come back tomorrow.

That was the shape I wanted:

  • short sessions
  • one clear task
  • no speed-race feeling
  • slow facts come back
  • fluent facts stop wasting time

What teachers already know

Teachers see this all the time. A student looks fine in a unit when the facts are isolated, then struggles when the same facts show up inside something messier.

That does not always mean the child forgot multiplication. It can mean the recall was never automatic enough to survive the messier context.

This is why I like the phrase "fake fluency." It is not that the child is pretending. It is that the practice data can look better than the real classroom behavior.

Correct-but-slow is the quiet version of that problem.

Where Math Builders fits

I am still building this as one person, and I am not pretending it has some huge classroom story behind it. It started because I needed a calmer way to help my own kid practice.

The current multiplication fact fluency page is here:

https://mathbuilders.com

If you are building learning tools, the lesson I would pull from this is simple: the most useful signal is not always the score. Sometimes the useful signal is the hesitation right before the right answer.

That is the part the kid feels, the parent sees, and the next worksheet punishes.