[Math] How to multiply Roman numerals

arithmetic

How to multiply Roman numerals? I need an algorithm of multiplication of numbers written in Roman numbers. Help me please.

Best Answer

Make a table with two columns, and enter the two numbers to be multiplied into the first row. Make the next row by halving the first number (discarding remainders) and doubling the second. Continue until there is nothing left to halve. Cross out all the rows where the left number is even. Add the remaining numbers in the second column. The result is the product of the first two numbers

Examples

enter image description here

Source

Related Question