When multiplying any two numbers, for example 15 * 18, the value is the same as:

x * y = avg(x,y)2 - (avg(x,y) - min(x,y))2
Which simplifies to:
x * y = 2 * avg(x,y) * min(x,y) - min(x,y)2

so 15 * 18 =
= avg(15,18)2 - (avg(15,18) - min(15,18))2
= 2 * avg(15,18) * min(15,18) - min(15,18)2
= 2 * 16.5 * 15 - 152
= 270

So the value of any multiplication is the same as the average of the two sides squared minus the distance from the numbers to the average squared.



For example (reload page for more random examples):

12 * 9.3333333333333 = 112
avg(12,9.3333333333333) = 10.666666666667; min(12,9.3333333333333) = 9.3333333333333
10.6666666666672 - (10.666666666667 - 9.3333333333333)2 = 112
2 * 10.666666666667 * 9.3333333333333 - 9.33333333333332) = 112

6 * 7 = 42
avg(6,7) = 6.5; min(6,7) = 6
6.52 - (6.5 - 6)2 = 42
2 * 6.5 * 6 - 62) = 42

-10 * 7.3333333333333 = -73.333333333333
avg(-10,7.3333333333333) = -1.3333333333333; min(-10,7.3333333333333) = -10
-1.33333333333332 - (-1.3333333333333 - -10)2 = -73.333333333333
2 * -1.3333333333333 * -10 - -102) = -73.333333333333

-9 * 14 = -126
avg(-9,14) = 2.5; min(-9,14) = -9
2.52 - (2.5 - -9)2 = -126
2 * 2.5 * -9 - -92) = -126

-12 * 9 = -108
avg(-12,9) = -1.5; min(-12,9) = -12
-1.52 - (-1.5 - -12)2 = -108
2 * -1.5 * -12 - -122) = -108

13 * 3.25 = 42.25
avg(13,3.25) = 8.125; min(13,3.25) = 3.25
8.1252 - (8.125 - 3.25)2 = 42.25
2 * 8.125 * 3.25 - 3.252) = 42.25

0 * 0.125 = 0
avg(0,0.125) = 0.0625; min(0,0.125) = 0
0.06252 - (0.0625 - 0)2 = 0
2 * 0.0625 * 0 - 02) = 0