Math Worksheet Generator

Free printable math worksheets (addition, subtraction, multiplication, division or mixed) with number ranges and a built-in answer key.

🌐 Español

Worksheet settings

🔒 Private by design: everything runs locally in your browser and never uploaded to any server.

What lands on the page when you press Generate

Generating is instant and shows you the actual problems before anything is printed. The preview is a grid built from the same formatting function the PDF uses, so what you read on screen is what comes out of the printer, right down to the numbering.

Download produces a single two-page PDF. Page one carries a title strip (Addition, Subtraction, Multiplication, Division or Mixed Operations), then the numbered problems, each followed by a ruled blank line to write the answer on. Page two is headed Answer Key, repeats those problems in the same order, and prints each answer in red so a stack of marked sheets is scannable at a glance.

The layout adapts to the problem count rather than shrinking a fixed grid. Ten problems or fewer are laid out in two columns, up to eighteen in three, and larger sets in four. Font size is then derived from cell height and held between 11 and 18 points, which is what stops a 30-problem sheet from turning into unreadable fine print or a 10-problem sheet from looking like a poster. Margins are 48 points, and both A4 and Letter are computed from their real dimensions so the printer never rescales anything.

One implementation detail with a visible payoff: the multiplication and division signs are the genuine Unicode characters × and ÷, not the x and / most quick generators substitute. Both live in Helvetica’s WinAnsi encoding, so the PDF renders them correctly without embedding a font, which keeps the whole two-page file down to a few kilobytes.

The three arithmetic bugs we designed out

A math drill generator has exactly three ways to embarrass itself, and each one was a decision here rather than an accident avoided.

Wrong answers on the key. Every problem stores its answer at the moment it is created, from the same arithmetic that produced the operands, and the answer key is rendered from those stored values. The test suite asserts the stored answer against real arithmetic for all four operators, so the key cannot drift out of step with the sheet.

Negative subtraction. Two values are drawn from the range, then the larger becomes the minuend and the smaller the subtrahend. Every subtraction answer is therefore zero or positive, which is the standard grade-school convention. There is no “allow negatives” toggle, and that is a scope decision: negative results belong to a later stage than fact fluency, and a child who hits 4 - 9 on a timed drill loses the thread.

Remainders and division by zero. The naive approach is to draw two numbers and hope they divide, which either produces remainders or spends time rejecting pairs. Instead the quotient and the divisor are generated first, with the divisor floored at 1, and the dividend is their product. Clean division and a non-zero divisor both hold by construction, for every problem, always.

That last choice has one consequence a teacher should know about, because it looks like a bug the first time you see it. On a division sheet the dividend can exceed the range you selected, since it is the product of two numbers from that range. Ask for “up to 10” division and you may well get 72 ÷ 9. The operands being drilled are still inside your range; only the dividend is larger.

Operation, range and count: what each control really changes

Operation picks one of the four operators, or Mixed. Mixed chooses a fresh operator for each individual problem rather than one per sheet, so a single page interleaves all four and a student cannot settle into a pattern. That interleaving is the actual pedagogical difference between Mixed and printing four separate sheets.

Number range offers up to 10, 20, 50 and 100, drawing operands from zero upward. Zero is included on purpose, since 7 + 0 and 0 × 6 are facts children get wrong surprisingly often. The range scales the difficulty far more sharply for multiplication than for addition: multiplication at “up to 100” reaches products near 10,000, which is a written-method exercise rather than a recall exercise. If what you want is one table drilled to automaticity, Times Tables Practice is built for that instead.

Problems per page offers 10, 15, 20, 25 and 30, and it interacts with the layout described above. Twenty is a reasonable timed-drill length for most ages.

From preview to printer

  1. Choose an Operation, a Number range, a Problems per page count and a Paper size.
  2. Click Generate worksheet and read the preview.
  3. Tick Show answer key to check the answers on screen, or click again for an entirely new sheet.
  4. Click Download PDF, which builds the file from precisely the problems you are looking at.

All of that happens inside the browser. The problems are generated locally and the PDF is assembled locally with pdf-lib, the same library behind the Printable Calendar and the Telling Time Worksheets, so no worksheet you make is ever sent anywhere and the page keeps working with the network off.

Why a printed sheet still beats an app for fact fluency

Fluency with basic facts is not busywork; it is the working memory a child needs free when the actual problem arrives. A student who stops to count on their fingers for 7 × 8 has less attention left for the long division, fraction or word problem that the multiplication was only a step inside. Short, frequent drills are how that recall gets automatic.

A paper sheet has properties an app does not. It does not interrupt, it does not reward speed with animation, and it does not know or announce how many were wrong, which for an anxious child is the entire point. It also leaves a physical record of what was actually written, including the crossings-out that show where the thinking went sideways. Since every click of Generate produces a genuinely different sheet, the same settings can supply a week of morning work without a child ever memorising the page instead of the facts.

See it in action

Screenshot of the Math Worksheet Generator tool with worksheet settings choosing addition, subtraction, multiplication, division or mixed operations, with the number range set from up-to-10 upwards, generating a printable practice sheet
Math Worksheet Generator mid-process: worksheet settings choosing addition, subtraction, multiplication, division or mixed operations, with the number range set from up-to-10 upwards, generating a printable practice sheet.
Diagram: where the work happens on a SysFenix page that has no file input at all: the tool arrives as ordinary JavaScript inside the page, works the answer out on your own device and renders it in place, so the upload, queue and server-side record a typical online tool needs never happen
Where the work happens on a SysFenix page that has no file input at all: the tool arrives as ordinary JavaScript inside the page, works the answer out on your own device and renders it in place, so the upload, queue and server-side record a typical online tool needs never happen.

Frequently asked questions

Do the division problems ever come out with a remainder?

Never. The generator picks the quotient and the divisor first and multiplies them together to get the dividend, so exact division is guaranteed by construction rather than by drawing random pairs and discarding the ones that do not divide. The divisor is also clamped to at least 1, so a divide by zero cannot be printed.

Why did an "up to 10" division sheet print 72 ÷ 9?

Because the number range applies to the divisor and the quotient, and the dividend is their product. With a range of 10 the largest dividend that can appear is 100, so two- and three-digit dividends on a small-range division sheet are expected rather than a bug. Choose a smaller range if you want the dividend itself kept low.

Can a subtraction problem produce a negative answer?

No. Two numbers are drawn from your chosen range and the larger is always used as the minuend, so every answer is zero or positive. There is deliberately no option to allow negatives, since the sheet targets elementary fact practice, and a mixed sheet follows exactly the same rule for its subtraction problems.

Is the answer key included, and can I hand out the worksheet without it?

Every download is one two-page PDF with the worksheet on page one and the key on page two, so printing page one alone gives you the sheet to hand out. The key repeats the same problems in the same order with the answers in red, which turns marking into laying two pages side by side.

Will two children printing the same settings get the same problems?

Almost certainly not. Every operand is drawn through the same crypto.getRandomValues-backed helper the other generators on this site use, and a fresh set is built each time you click Generate. Nothing is cached, and no sheet is seeded from your settings, so identical options still produce different sheets.

Can I get Letter paper instead of A4?

Yes, the paper size dropdown offers both and the grid is computed from the real page dimensions, so nothing is cropped or rescaled at print time. Margins are 48 points on every side and the problem text scales with the height of its cell, so a 30-problem sheet stays readable instead of overflowing.

Related tools