Multiply Any Number by 11: The Split-Sum Shortcut
The split-sum trick lets you multiply any number by 11 mentally, in seconds. Worked examples for 2-, 3-, and 4-digit numbers with carry handling.
To multiply any number by 11, split the digits, compute adjacent sums, and insert them in between. That is the whole trick.
Vedic mathematics catalogues dozens of shortcuts for mental arithmetic. The multiply-by-11 method is one of the most immediately practical: it requires no memorisation beyond single-digit addition, and it generalises cleanly to numbers of any length.
The Core Method: Two-Digit Numbers
Take any 2-digit number. Call its digits A (tens) and B (units).
The result of AB × 11 reads, from left to right: A, A+B, B.
That is all. Three steps:
- Step 1: Write the first digit A on the left.
- Step 2: Add A and B. Write the sum in the middle.
- Step 3: Write the last digit B on the right.
Worked examples — no carry
-
Example 1: 42 × 11
- Digits: A = 4, B = 2
- Middle: 4 + 2 = 6
- Result: 4 6 2 = 462
-
Example 2: 36 × 11
- Digits: A = 3, B = 6
- Middle: 3 + 6 = 9
- Result: 3 9 6 = 396
-
Example 3: 27 × 11
- Digits: A = 2, B = 7
- Middle: 2 + 7 = 9
- Result: 2 9 7 = 297
Each of these takes about two seconds once the method is internalised.
When the Middle Digit Overflows
The rule stays identical when A + B is 10 or more. The only addition: write only the units digit of the sum in the middle, and add 1 (the carry) to A.
- Step 1: Write the first digit A on the left.
- Step 2: Compute A + B.
- If A + B is less than 10: write A + B in the middle.
- If A + B is 10 or more: write only the units digit in the middle; add 1 to A.
- Step 3: Write the last digit B on the right.
Worked examples — with carry
-
Example 4: 57 × 11
- Digits: A = 5, B = 7
- Middle: 5 + 7 = 12 (units digit = 2, carry 1)
- Left digit: 5 + 1 = 6
- Result: 6 2 7 = 627
-
Example 5: 68 × 11
- Digits: A = 6, B = 8
- Middle: 6 + 8 = 14 (units digit = 4, carry 1)
- Left digit: 6 + 1 = 7
- Result: 7 4 8 = 748
-
Example 6: 99 × 11
- Digits: A = 9, B = 9
- Middle: 9 + 9 = 18 (units digit = 8, carry 1)
- Left digit: 9 + 1 = 10 (units digit = 0, carry 1 again)
- New leftmost digit: 1
- Result: 1 0 8 9 = 1089
Notice: a 2-digit number multiplied by 11 can produce a 4-digit result when both digits are 9. The carry logic handles this automatically; the result simply grows one position to the left.
Three-Digit Numbers
For a 3-digit number ABC, the result of ABC × 11 reads: A, A+B, B+C, C.
The same adjacent-sum rule, applied once more: each output digit is the sum of the two neighbouring input digits. Carry propagates right-to-left when any sum is 10 or more.
Worked examples — 3-digit
-
Example 7: 314 × 11
- Digits: A = 3, B = 1, C = 4
- Pairs: A+B = 3+1 = 4; B+C = 1+4 = 5
- Result: 3 4 5 4 = 3454
-
Example 8: 253 × 11
- Digits: A = 2, B = 5, C = 3
- Pairs: A+B = 2+5 = 7; B+C = 5+3 = 8
- Result: 2 7 8 3 = 2783
-
Example 9: 768 × 11
- Digits: A = 7, B = 6, C = 8
- Pairs: A+B = 7+6 = 13; B+C = 6+8 = 14
- Process right-to-left:
- C = 8
- B+C = 14: write 4, carry 1
- A+B+carry = 13+1 = 14: write 4, carry 1
- A+carry = 7+1 = 8
- Result: 8 4 4 8 = 8448
Four-Digit Numbers and Beyond
The pattern generalises directly. For a 4-digit number ABCD, the result of ABCD × 11 reads: A, A+B, B+C, C+D, D, with carries applied from right to left.
Worked examples — 4-digit
-
Example 10: 1236 × 11
- Digits: A = 1, B = 2, C = 3, D = 6
- Adjacent pairs: 1+2=3, 2+3=5, 3+6=9; all sums below 10, no carry
- Result: 1 3 5 9 6 = 13596
-
Example 11: 2409 × 11
- Digits: A = 2, B = 4, C = 0, D = 9
- Adjacent pairs: 2+4=6, 4+0=4, 0+9=9; no carry
- Result: 2 6 4 9 9 = 26499
For numbers of any length, apply the same rule: keep the outermost digits unchanged, compute the sum of each adjacent pair for the internal digits, and propagate carries from right to left.
Extending to 111 and 1111
Multiplying by 111 follows a triplet-sum extension of the same idea. For a 2-digit number AB:
-
AB × 111produces a 4-digit result: A, A+B, A+B, B (with carries). -
Example: 32 × 111
- A = 3, B = 2; A+B = 5
- Result: 3 5 5 2 = 3552
- Verify: 32 × 100 + 32 × 10 + 32 = 3200 + 320 + 32 = 3552
-
Example: 47 × 111
- A = 4, B = 7; A+B = 11
- Process right-to-left:
- Units: B = 7
- Tens: A+B = 11 → write 1, carry 1
- Hundreds: A+B+carry = 11+1 = 12 → write 2, carry 1
- Thousands: A+carry = 4+1 = 5
- Result: 5 2 1 7 = 5217
- Verify: 47 × 100 + 47 × 10 + 47 = 4700 + 470 + 47 = 5217
Multiplying by 1111 adds one more layer: adjacent quadruplet sums. The carry logic stays the same. Each extra ‘1’ in the multiplier adds one more adjacent-sum step.
Why the Shortcut Works
The method is a direct consequence of the distributive property of multiplication. Multiplying any number N by 11 is the same as N × (10 + 1), which equals N × 10 + N × 1.
For a 2-digit number AB (where A is the tens digit and B is the units digit):
- N × 10 shifts every digit one place left: A is now in the hundreds position, B in the tens.
- N × 1 keeps the original: A in the tens position, B in the units.
- Adding: the hundreds digit is A (unchanged), the tens digit is A + B, and the units digit is B.
That is the split-sum rule, derived from arithmetic. No memorisation required: just a recognition that 11 = 10 + 1.
The same reasoning scales up: 111 = 100 + 10 + 1 introduces three overlapping additions, producing the triplet-sum pattern.
Speed maths articles like this one sit inside a broader toolkit for timed aptitude sections. FACE Prep’s quantitative aptitude shortcuts and aptitude test preparation guide cover the wider set of techniques placement tests draw from.
Recognising and applying a compact rule consistently (split, sum, carry, repeat) is the same pattern-detection skill that makes prompt engineering effective. If you want to explore how AI models handle arithmetic and where they break down, TinkerLLM gives you a live sandbox for ₹299.
Primary sources
Frequently asked questions
Does this trick work for all whole numbers, not just 2-digit ones?
Yes. The adjacent-sum rule works for any positive integer. Add each neighbouring pair of digits from right to left, carrying when any sum reaches 10 or more.
What do I do when the sum of two adjacent digits is greater than 9?
Write only the units digit and carry 1 to the next position on the left — exactly as in standard column addition.
How does the multiply-by-11 trick extend to multiply-by-111?
With 111 you sum adjacent triplets instead of pairs. For a 2-digit number AB × 111, the result reads A, A+B, A+B, B (with carries). The same carry rules apply.
Can I use this shortcut in timed aptitude tests like CAT or AMCAT?
Yes. All timed aptitude sections reward faster arithmetic. The split-sum method cuts 11× problems from roughly 6 seconds of long multiplication to under 2 seconds once practised.
Is there a related shortcut for multiplying by 12 or 13?
Not with an identical single rule. A related approach: for ×12, compute ×11 and add the original number once. For ×13, compute ×11 and add twice the original number.
A self-paced playground for building with LLMs.
TinkerLLM is FACE Prep's sister property. A guided environment for shipping real LLM applications, the kind of project that earns a paragraph on your resume, not a line.
Try TinkerLLM (₹299 launch)