Simple Equation Generator
Builds a sheet of linear equations at the level you ask for. Every solution is a whole number, and every question is checked by substituting the answer back in — which is the same check a pupil is told to do. Every question is computed and checked directly — not a fabricated or AI-guessed fact.
What this generator does
Generates linear equations to solve, with answers. Coefficients are chosen so the solution is a whole number or a simple fraction, which is deliberate: an equation whose answer is 3.7142857 tests a calculator rather than the method.
How to use this tool
- Choose a level and how many questions you want.
- Press make questions and work through the sheet.
- Show the answers to mark it, or show the working to see which operation was undone at each step.
- Enter a seed word to rebuild the same sheet later.
Common use cases
- Solving-equations practice
- Quick maths warm-ups
- Self-testing before a maths quiz
Randomness and fairness
The solution is drawn first with the browser's cryptographic random number generator and the equation is then built around it. Generating the equation first and solving it would produce awkward answers most of the time, which is exactly what makes a worksheet unusable. A seed word rebuilds the same sheet later; it is for reproducibility, not cryptographic strength, so a seeded sheet is deterministic rather than unpredictable.
For how randomness is produced across the whole site, see how Generate Random works.
Common mistakes
- Doing something to one side only
- Whatever you do to one side you do to the other. That is the entire method, and every error in it is a version of forgetting this.
- Dividing before collecting terms
- Get all the unknowns on one side and all the numbers on the other before dividing. Dividing early multiplies the number of fractions to handle.
Related generators
- Algebra Substitution Question GeneratorSubstitution questions built to order — one letter, two letters, squares, brackets and division, all evaluating to whole numbers.
- Simultaneous Equations GeneratorPairs of linear equations built backwards from a whole-number solution, with the elimination worked out line by line.
- Linear Inequality GeneratorInequalities to solve, including the ones where dividing by a negative turns the sign round, with the flip tested rather than asserted.
- Order of Operations Question GeneratorBODMAS/PEMDAS questions built so the order genuinely changes the answer, with worked steps.
- Diophantine Equation GeneratorLinear equations in two unknowns over the integers, with the solvability test, a table of the solution family and the smallest non-negative answer.