Lessons 43–60: reference arithmetic, powers, division, divisibility, and decimal methods in the new Vedic Math course.
Technique explanation

For a number N near base B with deficiency d = N - B, the cube is calculated using the Yaavadunam method: N^3 = (N + 2d) | 3d^2 | d^3. Each part (except the leftmost) must contain as many digits as the base has zeros.

This method is best for numbers within 10% of the base. Standard fallback: Standard long multiplication or the algebraic expansion (B + d)³.

Worked examples

Example 1: 104 cubed

  • Base: 100. Deficiency (d): +4.
  • Left Part: 104 + 2(4) = 112.
  • Middle Part: 3(4^2) = 48.
  • Right Part: 4^3 = 64.
  • Combine: 112 | 48 | 64 = 1124864.
  • Check: 104 × 104 × 104 = 1,124,864.

Example 2: 96 cubed

  • Base: 100. Deficiency (d): -4.
  • Left Part: 96 + 2(-4) = 88.
  • Middle Part: 3(-4)^2 = 48.
  • Right Part: (-4)^3 = -64.
  • Normalize: 88 | 48 | -64 = 884800 - 64 = 884736.
  • Check: 96 × 96 × 96 = 884,736.
Technique explanation

The duplex square root method (Dwandwa Yoga) reverses the duplex squaring process. For a number N, group digits in pairs from the right. The first group gives the first root digit. The remaining steps involve dividing the 'gross dividend' by twice the first digit and subtracting the duplex of the root digits found so far (excluding the first) from the dividend before the next division.

This method is optimized for perfect squares. If the number is not a perfect square, the method will produce a non-zero remainder. Standard fallback: The conventional long division square root method or Newton's iteration for non-perfect squares.

Worked examples

Example 1: Square root of 1849

  • Group: 18 | 49. The root has two digits.
  • First Digit: Largest square = 18 is 16 (4^2). First root digit is 4. Remainder is 18 - 16 = 2.
  • Divisor: 2 4 = 8.
  • Gross Dividend: The remainder 2 prefixes 4 to make 24.
  • Next Digit: 24 / 8 = 3. Remainder is 0. Second root digit is 3.
  • Final Check: The remainder 0 prefixes 9 to make 09. Subtract duplex D(3) = 9. 9 - 9 = 0.
  • Result: 43.
  • Check: 43 × 43 = 1849.

Example 2: Square root of 54756

  • Group: 5 | 47 | 56. Root has three digits.
  • First Digit: Largest square = 5 is 4 (2^2). First root digit is 2. Remainder 5 - 4 = 1.
  • Divisor: 2 2 = 4.
  • Next Digit: 14 / 4 = 3. Remainder 2. Second root digit is 3.
  • Next Step: Gross dividend 27. Subtract D(3) = 9. Net dividend 18.
  • Next Digit: 18 / 4 = 4. Remainder 2. Third root digit is 4.
  • Final Step: Gross dividend 25. Subtract D(34) = 24. Net dividend 1. 1 prefixes 6 to make 16. Subtract D(4) = 16. 16 - 16 = 0.
  • Result: 234.
  • Check: 234 × 234 = 54756.
Technique explanation

The Duplex (D) method is a universal way to square any number. The duplex of a single digit is its square (a²), and the duplex of two digits is twice their product (2ab). For more digits, you pair the outer digits, double their product, and add the duplex of the remaining inner digits. To square a number, find the duplex of every possible prefix and suffix, arrange them in columns, and resolve carries.

Method Condition: Universal method for squaring; especially useful when numbers are not near a base.

Standard fallback: Standard long multiplication (N × N) or the identity (a + b)² = a² + 2ab + b².

Worked examples

Example 1: Two-Digit Square
Calculate 43².

  • Duplexes: D(4), D(43), D(3).
  • D(4) = 16; D(43) = 24; D(3) = 9.
  • Arrange: 16 | 24 | 9.
  • Resolve carries: 9; 4 (carry 2); 16+2=18.
  • Result: 1849.
  • Check: 43 × 43 = (40 + 3)² = 1600 + 2(40)(3) + 9 = 1600 + 240 + 9 = 1849.

Example 2: Three-Digit Square
Calculate 123².

  • Duplexes: D(1), D(12), D(123), D(23), D(3).
  • D(1)=1; D(12)=4; D(123)=2(1×3)+2²=10; D(23)=12; D(3)=9.
  • Arrange: 1 | 4 | 10 | 12 | 9.
  • Resolve carries: 9; 2 (c1); 10+1=11 (1, c1); 4+1=5; 1.
  • Result: 15129.
  • Check: 123 × 123 = 15129 (Verified by standard long multiplication).
Technique explanation

Polynomial multiplication follows the same 'vertically and crosswise' pattern as multi-digit numbers. Each column in the pattern corresponds to a specific power of x. Unlike numerical multiplication, there are no carries between columns because each term represents a different variable power.

Method Condition: Works for any two polynomials; most efficient for quadratics and cubics.

Standard fallback: The distributive property (FOIL for binomials) or grid/tabular multiplication.

Worked examples

Example 1: Two Binomials
Calculate (x + 2)(x + 3).

  • Coefficients: (1, 2) and (1, 3).
  • Right vertical: 2 × 3 = 6 (constant).
  • Crosswise: (1 × 3) + (2 × 1) = 5 (x term).
  • Left vertical: 1 × 1 = 1 (x² term).
  • Result: x² + 5x + 6.
  • Check: Substitute x = 1: (1 + 2)(1 + 3) = 12; 1² + 5(1) + 6 = 12 (Equality holds).

Example 2: Two Quadratics
Calculate (3x² + 2x + 1)(x² + 4x + 5).

  • Coefficients: (3, 2, 1) and (1, 4, 5).
  • x⁰: 1 × 5 = 5.
  • x¹: (2 × 5) + (1 × 4) = 14.
  • x²: (3 × 5) + (2 × 4) + (1 × 1) = 24.
  • x³: (3 × 4) + (2 × 1) = 14.
  • x⁴: 3 × 1 = 3.
  • Result: 3x⁴ + 14x³ + 24x² + 14x + 5.
  • Check: Substitute x = 1: (3+2+1)(1+4+5) = 60; 3(1)⁴ + 14(1)³ + 24(1)² + 14(1) + 5 = 60.
Technique explanation

Multiplying or dividing by 5, 25, or 125 can be simplified by using their fractional relationships to powers of ten (aliquot parts). Since 5 = 10/2, 25 = 100/4, and 125 = 1000/8, we can replace difficult multiplication with easier division (and vice versa) combined with place-value shifts.

Method Condition: Best for numbers that are easily divisible by 2, 4, or 8.

Standard fallback: Standard long multiplication or division using conventional algorithms.

Worked examples

Example 1: Multiplication by 25
Calculate 736 × 25.

  • Instead of × 25, divide by 4: 736 ÷ 4 = 184.
  • Multiply by 100 (shift two places): 184 → 18400.
  • Result: 18400.
  • Check: 736 × 100 ÷ 4 = 73600 ÷ 4 = 18400.

Example 2: Division by 125
Calculate 8624 ÷ 125.

  • Instead of ÷ 125, multiply by 8: 8624 × 8 = 68992.
  • Divide by 1000 (shift three places): 68992 → 68.992.
  • Result: 68.992.
  • Check: 68.992 × 125 = 8624 (Inverse multiplication confirms the quotient).
Technique explanation

To multiply any number by 12, use the 'double and add neighbor' rule. Working from right to left, double the current digit and add the digit to its immediate right (the neighbor). Add a leading zero to the number to ensure the first digit is processed correctly.

Method Condition: Specifically for the multiplier 12.

Standard fallback: Conventional long multiplication or the distributive property: (N × 10) + (N × 2).

Worked examples

Example 1: No Carries
Calculate 123 × 12.

  • Last digit (3): 3 × 2 + 0 = 6.
  • Middle digit (2): 2 × 2 + 3 = 7.
  • First digit (1): 1 × 2 + 2 = 4.
  • Leading zero: 0 × 2 + 1 = 1.
  • Result: 1476.
  • Check: 123 × 10 + 123 × 2 = 1230 + 246 = 1476.

Example 2: With Carries
Calculate 789 × 12.

  • Last digit (9): 9 × 2 + 0 = 18. Write 8, carry 1.
  • Middle digit (8): 8 × 2 + 9 + 1 (carry) = 26. Write 6, carry 2.
  • First digit (7): 7 × 2 + 8 + 2 (carry) = 24. Write 4, carry 2.
  • Leading zero: 0 × 2 + 7 + 2 (carry) = 9.
  • Result: 9468.
  • Check: 789 × 10 + 789 × 2 = 7890 + 1578 = 9468.
Technique explanation

This special case multiplication applies when the leading digits of two numbers are identical and their trailing digits (tails) sum to a power of ten (10, 100, 1000, etc.). The product is found in two parts: the left part is the leading part multiplied by 'one more than itself', and the right part is the product of the tails.

Method Condition: Leading digits must be identical; trailing digits must sum to a power of ten.

Standard fallback: Standard long multiplication or the distributive property (e.g., 47 × 40 + 47 × 3).

Worked examples

Example 1: Base 10 Tail
Calculate 47 × 43.

  • Check condition: Leading parts are both 4. Tails 7 + 3 = 10.
  • Left part: 4 × (4 + 1) = 20.
  • Right part: 7 × 3 = 21.
  • Result: 2021.
  • Check: 47 × 43 = (45+2)(45-2) = 45² - 4 = 2025 - 4 = 2021 (Difference of squares).

Example 2: Base 100 Tail
Calculate 792 × 708.

  • Check condition: Leading parts are both 7. Tails 92 + 08 = 100.
  • Left part: 7 × 8 = 56.
  • Right part: 92 × 08 = 736. Reserve 4 digits (2 × tail width) on the right: 0736.
  • Result: 560736.
  • Check: 792 × 708 = 560736 (Verified by standard long multiplication).
Technique explanation

Vinculum digits are negative digits within a number, denoted by an overbar (e.g., ̄x). This notation simplifies calculations by replacing large digits (6–9) with smaller ones (1–5). To convert a vinculum digit to standard form, decrease the digit to its left by 1 and take the complement of the vinculum digit (from 10 if it is the last in a group, or from 9 if followed by other vinculum digits).

Method Condition: Use when numbers contain digits 6, 7, 8, or 9 to reduce mental load.

Standard fallback: Conventional column subtraction using borrowing/regrouping (e.g., 40 - 2 for 4̄2).

Worked examples

Example 1: Single Vinculum Conversion
Convert 4̄2 to standard form.

  • Identify the vinculum digit: ̄2.
  • Decrease the digit to the left: 4 - 1 = 3.
  • Take the 10-complement of the vinculum digit: 10 - 2 = 8.
  • Result: 38.
  • Check: 38 + 2 = 40 (Inverse addition confirms normalization).

Example 2: Normalizing a Mixed Number
Convert 1̄23̄4 to standard form.

  • Identify groups: (1̄2) and (3̄4).
  • Process (1̄2): 1-1=0, 10-2=8 → 08.
  • Process (3̄4): 3-1=2, 10-4=6 → 26.
  • Combine: 0826.
  • Result: 826.
  • Check: 1000 - 200 + 30 - 4 = 826 (Standard place-value expansion).