Hi team Wolfram Mathematica, I would like to ask the significance of the output that we get by using the Minors command in Mathematica. Since we need to do further manipulation to get the minors of the given matrix .So, can you please either give a proper reason and significance of the output we are getting or can you change how the Minors and Cofactors command work.
I have shared an image below regarding the same , in output 2 we are getting the matrix with a horizontal and vertical flip of the desired one (output 4).Can your team change the way how this command work , in order to obtain the desired output? It would be highly appreciated if you answer my query.
Below mentioned code is given for finding the Minors of a matrix:
mat5=Array[Subscript[a,## ] &,{3,3}]//MatrixForm
Minors[mat5]//MatrixForm
Instead, we need the output of the following command:
minorsMatrix[m_List?MatrixQ]:=Map[Reverse,Minors[m],{0,1}]
minorsMatrix[mat5]//MatrixForm