Given 2 binary numbers of n digits. (n can be from 1 to something large) What is the maximum number of digits of their product?
I think it's 1 in 1-digit*1-digit, and 2n otherwise. But I want some more proof.
For example, n=3. So I want to know the maximum number of digits in their product. If I used the largest number in 3 digits, 111*111=110001, which is 6 digits. But I want some sort of function that gets the number of digits without actually calculating this.
7=2^3-1
– Kung Pao Chicken Feb 19 '14 at 21:13