The five questions in Quick Math Game are not random. Every run uses the same five original arithmetic expressions in the same fixed order, with predetermined integer answers and decreasing countdown budgets that the product itself publishes. The route begins with 17 + 28 (answer 45) on a 20-second timer, then continues through 9 × 7 − 5 (answer 58) on 18 seconds, 144 ÷ 12 + 6 (answer 18) on 16 seconds, (23 − 8) × 4 (answer 60) on 14 seconds, and ends with 3 × 3 × 3 + 14 (answer 41) on 12 seconds. Because there is no question bank and no random operand draw, the only variability in any run comes from your own input speed, accuracy, and timing. Two distinct wrong submissions or two distinct timeouts end the run, and restarting restores the same first expression, the same 20-second budget, zero points, and zero mistakes. That deterministic structure is intentional, so the game stays short, repeatable, and easy to test in a browser without an account, an app, or any extra setup.

The Five Fixed Expressions in Order
Quick Math Game does not hide a changing question bank behind the timer. The five original Lizely expressions are disclosed in advance, and they appear in the exact order shown below on every run.
| Round | Expression | Countdown | Correct answer |
|---|---|---|---|
| 1 | 17 + 28 | 20 seconds | 45 |
| 2 | 9 × 7 − 5 | 18 seconds | 58 |
| 3 | 144 ÷ 12 + 6 | 16 seconds | 18 |
| 4 | (23 − 8) × 4 | 14 seconds | 60 |
| 5 | 3 × 3 × 3 + 14 | 12 seconds | 41 |
Because the operands and operators never change, the answers never change. If you want to confirm that nothing was randomized, finish a clean run, click Restart, and watch the same first expression reappear with the same 20-second budget.
How the Timer Shrinks Each Round
The visible one-second countdown is the only piece of pressure in Quick Math Game, and it follows a simple rule: each correct answer removes two seconds from the next round's budget. The five budgets are 20, 18, 16, 14, and 12 seconds, in that order. A timeout on round one restarts that round's 20-second budget rather than locking in a permanent mistake, but a second distinct error anywhere in the run freezes the game. The implementation tests this behavior through a pure elapsed-second transition instead of fragile wall-clock waits, so the countdown stays consistent across browsers and devices rather than drifting with your frame rate or refresh interval.
The shrinking budget is what makes a perfect run feel like a speed drill, but it is not what makes the questions feel unpredictable. The expressions themselves stay the same; only your reaction time, your mental arithmetic, and your input method (keyboard, on-screen pad, mobile keys) vary from run to run.
The 1,000-Point Winning Route
Each correct answer adds exactly 200 points. Five correct answers in the disclosed order give 5 × 200 = 1,000 points, which is the game's fixed maximum, and there is no speed bonus beyond the requirement to finish before the timer expires. The winning answer sequence is 45, then 58, then 18, then 60, then 41.
If you want to verify the route before you play, pencil through each expression using standard precedence: multiplication and division before addition and subtraction, parentheses resolved first. That audit will match the disclosed answers exactly, which is itself evidence that the route is deterministic rather than generated per session.
How to Play Quick Math Game for a Perfect Run
If your goal is to clear all five rounds and land on 1,000 points, the route is the same every time. The only variable is whether you can answer quickly and accurately enough to keep the shrinking timer alive.
- Read the current expression and its visible countdown, then type the whole-number answer using the keyboard or the on-screen number pad.
- Submit with Enter or the button before the timer expires; a correct answer advances you from the 20-second round to the 18-second round.
- Continue answering in the disclosed order: 45 for 17 + 28, then 58 for 9 × 7 − 5, then 18 for 144 ÷ 12 + 6, then 60 for (23 − 8) × 4, then 41 for 3 × 3 × 3 + 14.
- Use standard precedence mentally: multiplication and division before addition and subtraction, parentheses first.
- If you mistype, correct it before submitting; one distinct wrong value is recoverable, but a second distinct error ends the run.
- Restart any time to return to the first expression, the 20-second timer, zero points, and zero mistakes.
For the cleanest possible run, compute the whole expression in your head before you start typing, submit once, and avoid touching the Backspace or Clear controls mid-answer. On mobile, the on-screen pad, minus toggle, Backspace, and Clear buttons are deliberate substitutes for keyboard keys, and they behave identically for scoring purposes.
Mistake Rules: What Counts and What Doesn't
The mistake counter is narrower than it looks, and that is by design. A distinct wrong integer (for example, typing 44 instead of 45) is recorded as a mistake. A timeout on a round where you have not yet made a mistake is also recorded once, identified by its round number, so repeating the same timeout on the same round does not consume a second error. After one mistake, you can still edit your answer, retype it correctly, and continue; only a second distinct error freezes the run.
Several input states that look like errors actually are not. The answer field accepts only whole-number text with an optional leading minus sign. Blank text, whitespace, decimals, exponent notation, and extra symbols are rejected without consuming a mistake. This distinction matters on phones, where an accidental empty submit should not end a run. A wrong value followed by the same wrong value counts once, not twice, so you cannot accidentally burn two mistakes by retyping the same number.
| Input behavior | Counts as a mistake? |
|---|---|
| Typing a different wrong integer | Yes (distinct error) |
| Timing out on a new round after a prior mistake | Yes (second distinct error) |
| Submitting the same wrong value twice in a row | No (deduplicated by value) |
| Timing out on the same round twice | No (deduplicated by round) |
| Submitting blank text, whitespace, decimals, or symbols | No (rejected without penalty) |
Why the Questions Stay the Same Across Runs
The fixed-route design is part of the product contract, not a quirk. The same five original Lizely expressions, the same integer answers, the same countdown budgets, and the same mistake rules are used so every run is reproducible for testing and so players can use Restart to compare their own input fluency under identical conditions. Nothing about the route is adaptive, normed, randomized, or standardized.
For that reason, the score has a deliberately limited meaning. A result from Quick Math Game reflects only this five-question route under product-authored timing, and it should not be treated as an intelligence score, a school placement result, a clinical measure, an employment signal, or a diagnosis. Device performance, interruptions, input method, and familiarity with the fixed route can all shift the outcome, so a single browser result cannot measure a broad ability. If you want a similar discussion of fixed versus randomized structure in another math quiz format, see the Number Sequence Quiz randomness breakdown.
Open the Quick Math Game in your browser, click Restart, and run through the disclosed 45, 58, 18, 60, 41 sequence yourself. Because the route does not change, your improvement over repeated runs is genuinely about your own arithmetic and typing speed, not about guessing which expression appears next.