I have two boolean matrices:
A = |1 1 0| |0 1 0| |0 0 1| and B = |1 0 0| |1 1 1| |0 0 1|
What is the result of A x B and what are the steps needed to attain the result?
Note: My textbook says that the answer to the above is:
A x B = |1 1 1| |1 1 1| |0 0 1|
and that A * B
is not equal to A x B
. Unfortunately, it does not give the steps needed to find the solution.