The method is correct and the arithmetic is wrong
In short
A tutor that explains correctly and computes wrongly is not short of reasoning, and rarely short of model size. It is generating digits as text rather than executing an operation, and the error compounds with every step. Re-execute the numeric steps of fifty transcripts against an independent calculator first: method or computation decides the fix.
Key takeaways
- Classify before repairing. A method error and a computation error look identical to a student and have opposite fixes.
- Generating a digit is continuing a string. Nothing in that process carries a place value or a carry.
- Chain length is the multiplier: at 97% per step, an eight-step solution is fully correct about 78% of the time.
- Externalise the computation, then verify the rendered answer against the tool and block on mismatch.
- Units, rounding and re-transcription produce wrong answers even when the solver was right.
The explanation is right and the number is wrong because the two came from different processes, and only one of them is arithmetic. The prose is the thing a language model is genuinely good at. The digits in the middle of it are produced by the same mechanism as the prose — one token continuing the last — and that mechanism has no place value, no carry, and no memory of what the previous line evaluated to.
So the first instinct, which is to reach for a larger model, is usually the wrong purchase. A larger model shifts the error rate; it does not change what the operation is. The repair is to stop asking the model to compute at all, and then to check that the number on screen is the one the calculator produced. But do the classification first, because the same symptom is produced by a fault with a completely different fix.
Re-execute the numbers in fifty transcripts before touching anything
This is an afternoon of work and it decides everything that follows. You are not judging whether answers were helpful. You are extracting every numeric claim the tutor made and recomputing it independently.
- Sample 50 transcripts containing at least one numeric step, stratified by topic and by the unit the learner was working in. Do not sample from complaints — complaints over-represent the visible failures and hide the ones nobody noticed.
- Extract each numeric claim as an expression with its inputs: what was being computed, from which values, and what the tutor said the result was. One row per claim, not one row per transcript.
- Recompute every row independently with exact arithmetic — a computer algebra system for symbolic work, decimal rather than binary floating point for anything involving money or fixed decimal places.
- Classify each mismatch as method, computation, presentation or transcription, using the table below. Two markers on the first 20 rows, to check the classification itself is stable.
- Record the position of the first wrong number in each chain. A distribution clustered at step one and a distribution that rises with step index are different problems.
- Report the rate per unit of instruction, not per model. If one topic carries most of the failures, the cause is probably not arithmetic at all.
| What the transcript shows | Classification | Where the repair lives |
|---|---|---|
| Correct operation named, wrong value produced from correct inputs | Computation | Tool execution and answer verification |
| A step that does not follow from the step above it | Method | Grounding, sequencing and content |
| Right magnitude, wrong unit or wrong number of decimal places | Presentation | Output formatting rules and unit handling |
| A value computed correctly, then carried into the next line as a different number | Transcription | Structured state between steps, not free text |
Method errors are not this page's problem and cannot be fixed by a calculator. If the tutor is deriving from something the class has not been taught, or from a different edition of the material, the repair is corpus-side and belongs with grounding a tutor in the module you actually teach. If it is numerically correct but methodologically foreign, that is a separate diagnosis, in the tutor is right and using notation the course never taught.
Five ways a correct method lands on a wrong number
In rough order of how much of the total they account for. Each has a distinct signature in the sample you just built, which is the point of building it.
| Cause | Signature in the sample | What actually fixes it |
|---|---|---|
| The arithmetic happens during generation | Errors scattered across topics, more frequent as operands get longer or less round. | Emit an expression and evaluate it outside the model. |
| Multi-step accumulation | First-error position rises with step index; single-step items are nearly clean. | Evaluate each step as it is produced, not the whole solution at the end. |
| Units and precision | Right digits, wrong scale — centimetres for metres, two decimals where the course wants three. | Carry units as data, and fix rounding as a per-topic rule rather than a request. |
| Transcription between steps | A value that was correct on the line above appears altered on the line below. | Hold intermediate values in a structure the next step reads, not in prose. |
| A genuine method error, read as arithmetic | The independent recomputation agrees with the tutor. The disagreement is with the course. | Nothing on this page. Treat it as a grounding fault. |
Give the arithmetic to something that does arithmetic
The model's job is to decide what to compute, explain why, and read the result back in the language of the course. The computing itself goes to a tool: a computer algebra system for symbolic manipulation and exact fractions, a decimal library for anything with fixed decimal places, a unit-aware evaluator where quantities carry dimensions.
- Exact where the course is exact. A symbolic engine such as SymPy keeps one-third as a fraction rather than as 0.3333, which matters because the course's answer key does too.
- Decimal where money or fixed places are involved. Python's decimal documentation states that in decimal floating point 0.1 + 0.1 + 0.1 - 0.3 is exactly equal to zero, while in binary floating point the result is 5.5511151231257827e-017 — near zero, but enough to break an equality check the tutor then reports to a student.
- One expression per step, evaluated as it is produced. Batch evaluation at the end tells you the answer is wrong without telling you which line to reteach.
- The expression stored alongside the rendered text. When a teacher disputes an answer next term, the arguable artefact is the expression, not a paragraph.
- A deterministic path for anything the item author already knows. If the item ships with a worked solution, the tutor should be comparing against it rather than rederiving it, which is the same argument behind a hint ladder authored as content.
Check the sentence against the tool before the student sees it
Calling a tool is not the same as using its result. The common half-built version calls a calculator, gets 4.75, and then writes a sentence containing 4.7 because the sentence was generated separately. Verification is a distinct step: parse the numbers out of the drafted response, compare each against the evaluated value, and refuse to render on mismatch.
There is no such thing as a small arithmetic slip in a tutor. The student cannot tell which part of the answer to distrust, so they stop trusting the method as well.
A mismatch should block, not annotate. A warning banner beside a wrong number is worse than a retry, because it hands a judgement call to the person least equipped to make it. Make the mismatch rate a standing number, and put the numeric behaviours into the graded set described in an evaluation set that measures teaching rather than checking it once at launch.
The build is small and unglamorous: an expression format, an evaluator, a comparison step, a refusal path and a log of every mismatch with its transcript. That is the shape of work we scope as internal tools and operations — narrow, testable, and owned by somebody after launch.
What a solver behind the tutor will not fix
It will not fix a wrong answer that was never arithmetic. A tutor solving the wrong equation computes it perfectly, and the sample you built is the only thing that tells the two apart. It also will not fix a wrong answer the learner caused, by mistyping the problem — which argues for reading the problem back before solving it.
It also makes one existing problem worse. A tutor that computes reliably is a more attractive thing to extract answers from, which is the failure diagnosed in students pressing hint until the answer falls out. And once computation is free and correct for every learner, any assessment whose difficulty was the computation has stopped measuring anything — a design question settled in watch them, or change the assessment, not a guardrail you can bolt on afterwards.
Everything here sits inside AI tutoring and learning support, part of our education and edtech work.
Frequently asked questions
Short answers to the follow-ups this page tends to raise.
Why do AI math tutors get arithmetic wrong?
Because the digits are generated the same way the words are — as the most likely continuation of a string — rather than by executing an arithmetic algorithm. Nothing in that process carries a place value or a carry from one column to the next, so the failures look arbitrary rather than systematic. The explanation around the number can be entirely sound, because explaining is the operation the model is actually performing.
Will a bigger model fix calculation errors in a tutor?
It moves the error rate without changing the mechanism, which is why teams who upgrade report improvement and then the same complaints a term later. Multi-step problems are where this bites: a per-step reliability of 97% still leaves an eight-step solution wrong roughly a fifth of the time. Externalising the computation changes the class of error rather than its frequency.
Should the tutor show the calculation it ran?
Show the expression, not the tool call. A student benefits from seeing which quantity was substituted where, and a teacher disputing an answer next term needs an artefact more precise than a paragraph. Displaying raw tool output alongside the explanation tends to make the answer feel machine-generated and encourages copying the result rather than following the method.
How do you tell a method error from an arithmetic error at scale?
Recompute the tutor's own steps independently and see whether the recomputation agrees with it. If the calculator produces what the tutor produced, the tutor computed correctly and disagrees with the course — a grounding or sequencing fault. If the calculator disagrees, it is a computation fault. That single comparison splits a mixed pile of complaints into two queues with different owners.
Does this apply to subjects other than maths?
Anywhere the answer contains a quantity, yes. Chemistry stoichiometry, physics problems with units, accounting balances and statistics all fail the same way, and unit handling tends to hurt more than the arithmetic itself. The design rule is the same: the model decides what to compute and reads the result back, and something else does the computing.
- tutoring
- tool use
- evaluation
- maths
The work behind this page
Builds from our portfolio that this page draws on.
AskVault
An AI internal knowledge-search platform that answers employee questions from your own docs — grounded in citations, with knowledge gaps surfaced and deflection tracked.
Productivity AINotewell
An AI meeting assistant that records and transcribes every meeting, extracts the decisions and action items, assigns owners and due dates, and tracks follow-through until it's done.
Productivity AIRead next
- The hint ladder, and why it belongs in the content rather than the promptA hint ladder is authored content attached to an item, not an instruction in a prompt. The model should choose a rung, not invent one, because an invented rung cannot be tested.definition
- A misconception library: the wrong answers you author on purposeA catalogue of the wrong ideas learners hold, the answers that betray each one, and the response that argues with the idea instead of reteaching the whole topic.definition
- Fading: the point where a tutor is supposed to become less helpfulFading is the planned withdrawal of support once a learner has earned it. Left to prompt drift it never happens, and the result is dependence that reports as engagement.definition
- A conditional offer, and the sentence an assistant may say about itThe offer is a contract with a checklist attached. Software can read the checklist back accurately and cheaply; the moment it decides whether a result satisfies an item, it has made an admissions decision.definition
- A records request came back with assistant transcripts nobody could redactThe transcripts were never classified, so nothing was designed to filter or delete them. The test is not which system wrote the row — it is whether any join you control gets from that row to a named student.diagnostic
- A student data privacy agreement, read as an engineering specificationSchools bind vendors with a standard agreement plus an exhibit naming every data element collected. Five of its clauses are build work, and the exhibit is a schema diff in disguise.definition
Working on something in this space?
Tell us where you are in a sentence or two. We'll tell you honestly whether we're the right team, and what a sensible first slice of the work looks like.
Start the conversation