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):
3 * 10 = 30
avg(3,10) = 6.5; min(3,10) = 3
6.52 - (6.5 - 3)2 = 30
2 * 6.5 * 3 - 32) = 30
-8 * 11.5 = -92
avg(-8,11.5) = 1.75; min(-8,11.5) = -8
1.752 - (1.75 - -8)2 = -92
2 * 1.75 * -8 - -82) = -92
8 * 9.25 = 74
avg(8,9.25) = 8.625; min(8,9.25) = 8
8.6252 - (8.625 - 8)2 = 74
2 * 8.625 * 8 - 82) = 74
3 * 1 = 3
avg(3,1) = 2; min(3,1) = 1
22 - (2 - 1)2 = 3
2 * 2 * 1 - 12) = 3
-1 * 4.1666666666667 = -4.1666666666667
avg(-1,4.1666666666667) = 1.5833333333333; min(-1,4.1666666666667) = -1
1.58333333333332 - (1.5833333333333 - -1)2 = -4.1666666666667
2 * 1.5833333333333 * -1 - -12) = -4.1666666666667
-13 * 5 = -65
avg(-13,5) = -4; min(-13,5) = -13
-42 - (-4 - -13)2 = -65
2 * -4 * -13 - -132) = -65
7 * 13 = 91
avg(7,13) = 10; min(7,13) = 7
102 - (10 - 7)2 = 91
2 * 10 * 7 - 72) = 91