Special Case: Same Tens Digit, Units Add to 10

Lightning-fast multiplication when tens digits match and ones add to 10

સંબંધિત સૂત્રો

એકાધિકેન પૂર્વેણ

અગાઉના કરતાં એક વધુ દ્વારા

5 થી સમાપ્ત થતી સંખ્યાઓનો વર્ગ, અમુક સંખ્યાઓ વડે ભાગાકાર, અને વ્યસ્ત શોધવા માટે

અન્ત્યયોરેવ

ફક્ત છેલ્લા પદો

ઝડપી તપાસ અને અમુક ગણતરીઓ માટે છેલ્લા અંકો પર ધ્યાન કેન્દ્રિત કરો

સિદ્ધાંત

The Beautiful Special Case

When two 2-digit numbers have:

  • Same tens digit
  • Units digits that add to 10

There's an instant method!

Examples of This Pattern

  • 23 × 27 (both have tens=2, and 3+7=10)
  • 41 × 49 (both have tens=4, and 1+9=10)
  • 65 × 65 (both have tens=6, and 5+5=10)
  • 82 × 88 (both have tens=8, and 2+8=10)

The Formula

For numbers like n3 × n7 where n is the tens digit:

  1. Left part: n × (n+1)
  2. Right part: 3 × 7 = 21
  3. Answer: Concatenate them

Example: 23 × 27

  • Left: 2 × (2+1) = 2 × 3 = 6
  • Right: 3 × 7 = 21
  • Answer: 621

Example: 41 × 49

  • Left: 4 × (4+1) = 4 × 5 = 20
  • Right: 1 × 9 = 09 (pad to 2 digits)
  • Answer: 2009

Why It Works

For (10n + a) × (10n + b) where a + b = 10:

= 100n² + 10n(a+b) + ab
= 100n² + 10n(10) + ab
= 100n² + 100n + ab
= 100n(n+1) + ab

So: n(n+1) | ab

Special Note: This Includes Squaring

Numbers ending in 5 are a special case:

  • 25 × 25: tens=2, units 5+5=10 ✓
  • 65 × 65: tens=6, units 5+5=10 ✓

This is why squaring numbers ending in 5 works:

  • n5² = n(n+1)|25

Pattern in Action

11 × 19 = 1×2 | 1×9 = 2|09 = 209
22 × 28 = 2×3 | 2×8 = 6|16 = 616
33 × 37 = 3×4 | 3×7 = 12|21 = 1221
44 × 46 = 4×5 | 4×6 = 20|24 = 2024
55 × 55 = 5×6 | 5×5 = 30|25 = 3025

Notice the elegant progression!

પગલાં

1

Check if pattern applies: same tens, units add to 10

For 34 × 36: tens both 3 ✓, units 4+6=10 ✓

2

Take the tens digit (n)

n = 3

3

Multiply: n × (n+1) for left part

3 × 4 = 12

4

Multiply the units digits for right part

4 × 6 = 24

5

Concatenate (pad right to 2 digits if needed)

12|24 = 1224

ઉદાહરણો

Calculate 32 × 38

સરળ
1

Verify pattern

Tens: both 3 ✓, Units: 2+8=10 ✓

2

Left part: n(n+1)

3 × 4 = 12

3

Right part: units product

2 × 8 = 16

4

Combine

12|16 = 1216

જવાબ: 1216

Calculate 54 × 56

મધ્યમ
1

Verify pattern

Tens: both 5 ✓, Units: 4+6=10 ✓

2

Left part: n(n+1)

5 × 6 = 30

3

Right part: units product

4 × 6 = 24

4

Combine

30|24 = 3024

જવાબ: 3024

Calculate 91 × 99

મધ્યમ
1

Verify pattern

Tens: both 9 ✓, Units: 1+9=10 ✓

2

Left part: n(n+1)

9 × 10 = 90

3

Right part: units product

1 × 9 = 09 (pad to 2 digits)

4

Combine

90|09 = 9009

જવાબ: 9009

પ્રેક્ટિસ માટે તૈયાર છો?

ઇન્ટરેક્ટિવ પ્રેક્ટિસ સમસ્યાઓ સાથે તમે જે શીખ્યા છો તે લાગુ કરો

પ્રેક્ટિસ શરૂ કરો