has this example matrix A some special propertries, which might be useful? $$ \left[\begin{array}{rrrrrr} 3 & 0 & 0 & 0 & 2 & 0 & 0 & 0 \\ 4 & 3 & 0 & 0 &-1 & 2 & 0 & 0 \\ 5 & 4 & 3 & 0 &-2 &-1 & 2 & 0 \\ 0 & 5 & 4 & 3 & 0 &-2 &-1 & 2 \\ 0 & 0 & 5 & 4 & 0 & 0 &-2 &-1 \\ 0 & 0 & 0 & 5 & 0 & 0 & 0 &-2 \end{array}\right] $$
I want to find $$\min \|Ax\|_\max$$ where x is a binary vector and for each Block [here column 1-4 and 5-8 are two blocks] only one $x_i$ is 1. Each Block has the property that each element is shifted by one index.
I copied the matrix from here: Minimize $\|Ax-b\|$ where $x$ is a binary vector Its a slighty different objective but the matrix is basically the same. In the comments someone say something about block matrices and the kernel which i don't fully understand. Maybe someone could explain that a litte bit more?´
Thank you