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

14 * 7.1666666666667 = 100.33333333333
avg(14,7.1666666666667) = 10.583333333333; min(14,7.1666666666667) = 7.1666666666667
10.5833333333332 - (10.583333333333 - 7.1666666666667)2 = 100.33333333333
2 * 10.583333333333 * 7.1666666666667 - 7.16666666666672) = 100.33333333333

12 * 10.1 = 121.2
avg(12,10.1) = 11.05; min(12,10.1) = 10.1
11.052 - (11.05 - 10.1)2 = 121.2
2 * 11.05 * 10.1 - 10.12) = 121.2

2 * 9.1111111111111 = 18.222222222222
avg(2,9.1111111111111) = 5.5555555555556; min(2,9.1111111111111) = 2
5.55555555555562 - (5.5555555555556 - 2)2 = 18.222222222222
2 * 5.5555555555556 * 2 - 22) = 18.222222222222

-6 * 1.1428571428571 = -6.8571428571429
avg(-6,1.1428571428571) = -2.4285714285714; min(-6,1.1428571428571) = -6
-2.42857142857142 - (-2.4285714285714 - -6)2 = -6.8571428571429
2 * -2.4285714285714 * -6 - -62) = -6.8571428571429

0 * 13 = 0
avg(0,13) = 6.5; min(0,13) = 0
6.52 - (6.5 - 0)2 = 0
2 * 6.5 * 0 - 02) = 0

-8 * 6 = -48
avg(-8,6) = -1; min(-8,6) = -8
-12 - (-1 - -8)2 = -48
2 * -1 * -8 - -82) = -48

9 * 11.166666666667 = 100.5
avg(9,11.166666666667) = 10.083333333333; min(9,11.166666666667) = 9
10.0833333333332 - (10.083333333333 - 9)2 = 100.5
2 * 10.083333333333 * 9 - 92) = 100.5