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):

8 * 8.25 = 66
avg(8,8.25) = 8.125; min(8,8.25) = 8
8.1252 - (8.125 - 8)2 = 66
2 * 8.125 * 8 - 82) = 66

1 * 12.333333333333 = 12.333333333333
avg(1,12.333333333333) = 6.6666666666667; min(1,12.333333333333) = 1
6.66666666666672 - (6.6666666666667 - 1)2 = 12.333333333333
2 * 6.6666666666667 * 1 - 12) = 12.333333333333

12 * 6.25 = 75
avg(12,6.25) = 9.125; min(12,6.25) = 6.25
9.1252 - (9.125 - 6.25)2 = 75
2 * 9.125 * 6.25 - 6.252) = 75

-5 * 7 = -35
avg(-5,7) = 1; min(-5,7) = -5
12 - (1 - -5)2 = -35
2 * 1 * -5 - -52) = -35

-6 * 9 = -54
avg(-6,9) = 1.5; min(-6,9) = -6
1.52 - (1.5 - -6)2 = -54
2 * 1.5 * -6 - -62) = -54

-10 * 2 = -20
avg(-10,2) = -4; min(-10,2) = -10
-42 - (-4 - -10)2 = -20
2 * -4 * -10 - -102) = -20

0 * 4 = 0
avg(0,4) = 2; min(0,4) = 0
22 - (2 - 0)2 = 0
2 * 2 * 0 - 02) = 0