https://tech.yahoo.com/science/articles/mathematicians-still...
Mathematicians still don't know the fastest way to multiply numbers
31–40 of 152 posts
Re: Mathematicians still don't know the fastest way to multiply numbers
#32I already know about fast multiplication algorithms, but it seems there's still no proof that a faster algorithm absolutely cannot exist. In other words, we don't know where the limit is yet. If that gets proven, would programming multiplication algorithms become faster? I'm curious
Re: Mathematicians still don't know the fastest way to multiply numbers
#33Re: Mathematicians still don't know the fastest way to multiply numbers
#34We can likely use different number representations for faster results. E.g. numbers in the form of coefficients to prime factors can be multipled at O(n) time, right?
In your case, doing prime factoring is where the cost would be, wouldn't it?
Re: Mathematicians still don't know the fastest way to multiply numbers
#35Re: Mathematicians still don't know the fastest way to multiply numbers
#36Shout out to a cookie ToS modal on top of an email newsletter modal on top of the article. What a great way to make me immediately click back and leave the site.
Re: Mathematicians still don't know the fastest way to multiply numbers
#37We can likely use different number representations for faster results. E.g. numbers in the form of coefficients to prime factors can be multipled at O(n) time, right?
Re: Mathematicians still don't know the fastest way to multiply numbers
#38Ok, maybe I don't understand the problem, but it seems obvious that it should never be greater than O(min(n1, n2) * 10), where n1 and n2 are the lengths in digits of each argument, and assuming we are multiplying decimal numbers. Take the first digit of the longer number. Multiply it by the shorter number and store the result. Take the second digit of the longer number. If it matches the first digit, do a lookup of t…
But obviously multiplying two n-bit binary numbers is not done in O(1) time, so "only counting the number of multiplies" is not a meaningful model, and not the model adopted by the researchers quoted in the article.
Re: Mathematicians still don't know the fastest way to multiply numbers
#39Re: Mathematicians still don't know the fastest way to multiply numbers
#40How is it measured? A lookup table takes 1 step to find the answer of a multiplication.