answer = AND(matrix1, matrix2)
Returns the boolean and of all the elements of the two matrices.
and([1,1;1,1], [0,0;0,0]) = [0,0;0,0] and([1,2], [2,1]) = [1,1]
not, or, xor