There are two $3\times3$ matrices $A$ and $B.$ Both represent a rotation in 3D space. $A$ and $B$ are given as follows where $a,b,c$ are column vectors.
$A = [\begin{array}{ccc}a & b & c \\ \end{array}]$
$B = [\begin{array}{ccc}a & c & -b \\ \end{array}]$
The $3$rd column of each matrix is the cross product of the $1$st and $2$nd column. How are these matrices related if in any way?
Another way we could write that relationship is $$ B = A \, \begin{bmatrix} 1 & 0 & 0\\ 0 & 0 & -1\\ 0 & 1 & 0 \end{bmatrix} $$ I'm not sure if that fully answers your question though...