We have a matrix with elements in the field of integers modulo 2 (F_2). We are looking for algorithm that multiply n x n matrix over F_2 in just O(n^2.81/(log n)^0.4)
How it is possible?
I know, that Strassen's algorithm gives O(n^2.81)
, but how can we get this factor of (log n)^0.4
?