I wondered myself about some tricks allowing quick checks to know whether the result of an operation can be true or is surely false. I found several for square roots on Internet, and so I looked for multiplication, but trying to found them by myself.
Thus, I made some assertions that worked in my tests, but I would like to know if they are valid for every number in, at least, $\Bbb D$. And of course, if they are more tricks hinting toward maybe right or surely wrong. I would like for these hints to be the simplest possible, using only basic operations or "visual" checking and no advanced knowledge in mathematics (but any trick is appreciated).
Let's take three numbers, $a$,$b$ and $c$, with $c = a \cdot b$ ; $a_i$, $b_i$, and $c_i$ are the integer parts of the numbers, and $a_d$, $b_d$, and $c_d$ the decimal part. Putting $\#$ before any of these variable implies we use the number of digits of said variable. As of now, the assertions are the following :
- $\#c_i = \#a_i + \#b_i - 1$
- $\#c_d = \#a_d + \#b_d$
- $\#c = \#a + \#b - 1$
Thanks for the answers, Méta
(Sorry if I mistag the question, I have no mathematical background whatsoever)
Concerning the title question: one method to check the result of a multiplication for the integer parts, say $5\cdot 34=170$ is modular arithmetic. For example, if we compute $5\cdot 34=a$, then a quick check is $$ a\equiv 0 \bmod 2, \; a\equiv 0\bmod 5,\; a\equiv 0 \bmod 17. $$