Multiply 2 Bases

Home Base b to 10 Base 10 to b Base 2 to 4 Base 2 to 8 Base 3 to 9 Adding Bases Fraction to Decimal Decimal to Fraction Multiply 2 Bases Finding Remainder

(*View/Download .pdf file)

Multiplying 2 numbers in a different base:

   A.  Usually when multiplying numbers in a different base you will have one number that is only a single digit.

1.  Multiply the single digit by the ones digit first.  If the resulting number is greater than the base then find the remainder after dividing by b (i.e. n MOD b).  Also, find the number of times b goes into n (i.e. n DIV b) and carry this number.

2.  Next, multiply the single digit by the next digit and repeat the steps in step 1.  Continue until you have multiplied by all the digits.

Ex [1]  1334 x 34 =_________4.

a.  First multiply 3 x 3 which is 9.  4 MOD 9 = 1.  Write down 1.  4 DIV 9 = 2.  Carry *2.

b.  3 x 3 = 9 + *2 = 11.  4 Mod 11 = 3.  Write down 3.  4 DIV 11 = 2.  Carry *2.

c.  3 x 1 = 3 + *2 = 5.  4 MOD 5 = 1.  Write down 1.  4 DIV 5 = 1.  Since there are no more numbers left to multiply by, write down the 1.

d.  The answer is 1131.

Ex [2]  416 x 56 =_________6.

a.  5 x 1 = 5.  Since 5 is less than 6, write down 5 and there will be no numbers to carry.

b.  5 x 4 = 20.  6 MOD 20 = 2.  Write down 2.  6 DIV 20 = 3.  Since there are no more numbers left to multiply by, write down the 3.

c.  The answer is 325.

Ex [3]  1048 x 68 =________8.

a.  6 x 4 = 24.  24 MOD 8 = 0.  Write down 0.  24 DIV 8 = 3.  Carry *3.

b.  6 x 0 = 0 + *3 = 3.  Since 3 is less than 8, write down 3 and there will be no numbers to carry.

c.  6 x 1 = 6.  Since 6 is less than 8, write down 6.

d.  The answer is 630.

Back to top