I am currently trying to find a mathematical proof of the following for a research paper. It's been quite long since i did higher mathematics and english is not my first language, so go easy on me if i got the terms wrong:
We have two matrices zxh and hxe that are multiplied to get the matrix zxe. This matrix in turn gets multiplied with a transposed unit vector 1xz to get the sum of each column in zxe. The result is the transposed vector 1xe. The values of this vector are ranked, which is the final result.
Values in zxh range from -1 to 1 and values in hxe range from 0 to 1.
Now i noticed the following:
If one column in zxh gets inverted (multiplied by -1) and at the same time if i switch the values in the corresponding row in hxe with their subtraction to 1, i get the same result in the ranking.
From what i observed the values in 1xe after the changes differ in a constant value from the ones before the changes. this constant is equal to the unit vector times the inverted column in zxh.
Example:
$$ zxh = \begin{pmatrix} 1 & -0,5 & 0 & -1 \\ 1 & 1 & 1 & 1 \\ -0,5 & 0 & 0,5 & 0 \end{pmatrix}; hxe = \begin{pmatrix} 1 & 0,5 & 0 \\ 0,5 & 1 & 0,5 \\ 1 & 0,5 & 0,5 \\ 1 & 1 & 1 \end{pmatrix} \\$$ The result of $1xz * zxh * hxe $ is $\begin{pmatrix} 3,25 & 2 & 1 \end{pmatrix}$
Now if we make the changes described above (let's take the first column and row):
$$ zxh = \begin{pmatrix} -1 & -0,5 & 0 & -1 \\ -1 & 1 & 1 & 1 \\ 0,5 & 0 & 0,5 & 0 \end{pmatrix}; hxe = \begin{pmatrix} 0 & 0,5 & 1 \\ 0,5 & 1 & 0,5 \\ 1 & 0,5 & 0,5 \\ 1 & 1 & 1 \end{pmatrix} $$
The result of $1xz * zxh * hxe $ is $\begin{pmatrix} 1,75 & 0,5 & -0,5 \end{pmatrix}$ which is exactly 1,5 less than the previous result.
I need to prove that the ranking before and after applying the changes, stays the same. The values in the vector 1xe are not relevant, as long as the ranking is equal.
Would someone please draw out the steps to prove this formally?