Zetamac Strategies

Introduction

Zetamac is widely-known website in the quant space, designed as a benchmark for mental math speed.

The format, 120s to solve as many addition, subtraction, multiplication, and division problems.

My motivation, my brother challenged me and I don't back down, but also mental math is one of the best bang for buck skills in real-life. Calculate your groceries tax? Estimate your restaurant bill?

My goal on the site is to hit 100 problems in 120s. My current best is 86.

I even build my own version of zetamac! But this one records your performance and has a competitive leaderboard! I'm buying anyone who beats my score a free bbt (given you're at waterloo).

Check it out, https://datamac.vercel.app/.

Now, I'll outline some of the strategies I've learned so you can get faster :D

Addition

This is the easiest type of problem in Zetamac. Primarily because our brains are so accustomed to them. The key strategy is to sum digits from left to right, which may seem counterintuitive to the typical way we were taught in school. Why? This approach allows you to start typing the answer immediately while simultaneously calculating for the next digit.


The Strategy:

  • Start with the leftmost digits
  • Work your way right
  • Adjust for carry overs as needed

  • Example Walkthrough:

    For 38 + 55:

    1. I know it should start with an 8 (3+5)

    2. Then I see the ones digits sum to 13 (8+5)

    3. So I quickly change my answer to 93


    This method is faster because you can begin typing while still processing the remaining digits.

    Subtraction

    Subtraction is a bit trickier than addition but follows similar principles. For 2-digit subtraction problems, I use the same left-to-right strategy as addition, and being clever about carry overs.


    Strategy 1: Direct Subtraction

    Work from left to right, handling carry overs as they come.


    Strategy 2: Complement Method

    Instead of subtracting, think about how much you need to add to the smaller number to get the larger value.


    Example Walkthrough:

    For 83 - 69:

  • I can see I just need to add 14 to turn 69 into 83
  • So 14 is my answer

  • For 3-digit subtract 2-digit:

    1. Determine what you need to add to the 2-digit number to make it 100

    2. Then determine from 100 how much you need to add to get the 3-digit number


    Example:

    For 132 - 79:

    1. I know I need 21 to make 79 become 100

    2. Then I add 21 + 32 = 53 to get my answer

    Multiplication

    Most single-digit multiplication problems can be solved by rounding the second number to a nice value, then subtracting or adding as needed.


    Strategy 1: Rounding Method

    Round one number to make the calculation easier, then adjust.


    Example:

    For 9 × 74:

  • Round 9 to 10: 10 × 74 = 740
  • Subtract 74: 740 - 74 = 666

  • Strategy 2: Breaking Down (my preference)

    Break the problem into easier parts.


    Example:

    For 9 × 74:

  • 9 × 70 = 630
  • 9 × 4 = 36
  • 630 + 36 = 666

  • This is sometimes faster since addition is less brain-intensive than subtraction. But you need to know your 12x12 time table flawlessly.


    The 11 Trick:

    When multiplying by 11, add the digits of the second number and insert that value in the middle.


    Example:

    For 11 × 63:

  • 6 + 3 = 9
  • Insert 9 in the middle: 693

  • With Carry Over:

    For 11 × 84:

  • 8 + 4 = 12
  • Insert 2 in the middle, carry 1: 924

  • Why This Works:

    11 × 63 = 10 × 63 + 63 = 630 + 63 = 693

    The middle digit is the sum of the original digits because we're adding the number to its 10x version.

    Two-Digit Multiplication

    When both numbers are two digits, the strategies become more complex but still manageable with practice.


    Strategy 1: Breaking Down by 10s

    Break the first number into 10s and units, then multiply each part.


    Example:

    For 12 × 45:

  • 10 × 45 = 450
  • 2 × 45 = 90
  • 450 + 90 = 540

  • Strategy 2: The 12 Trick

    For 12 × any number:

  • 12 × n = 10 × n + 2 × n

  • Memorization Strategy:

    For smaller numbers, memorize sequences of multiples:

  • 10×, 20×, 30×, etc.
  • Also memorize the multiples of common numbers

  • Example:

    For 540 ÷ 12:

  • I know instantly that 480 = 40 × 12
  • I need an additional 60, which is 12 × 5
  • So the answer is 45

  • Important Note:

    These strategies work because Zetamac ensures results are always integers, so these rules aren't generalizable to all values.

    Division Shortcuts: The 11 and 9 Tricks

    Division in Zetamac can be made much faster with specific tricks for common divisors.


    The 11 Division Trick:

    When dividing by 11, the answer is either the two outer digits, or (due to carry over) the two outer digits with the leftmost digit reduced by 1.


    Example 1 (No Carry Over):

    374 ÷ 11 = 34

  • Take the first two digits: 37
  • Take the last digit: 4
  • Result: 34

  • Example 2 (With Carry Over):

    974 ÷ 11 = 84

  • When the hundreds digit ≥ tens digit, subtract 1 from the hundreds digit
  • Since 9 > 7, our answer is 84 (not 94)

  • The 9 Division Trick:

    For 3-digit numbers divided by 9:

    1. First digit = floor(first two digits ÷ 9)

    2. Second digit = 10 - last digit


    Example:

    342 ÷ 9 = 38

  • First digit: floor(34 ÷ 9) = 3
  • Second digit: 10 - 2 = 8
  • Result: 38

  • Final Remarks:

    There's absolutely no substitude for putting hours of practice, this is how your brain gets used to pattern recognition, and hence becomes faster. You'll see how useful these skills are in day-to-day life, have fun with it!