I have a constant binary matrix A (entries 0 or 1) and an unknown matrix X which is also binary. I'd like to find $X$ that minimizes $sum(sum(mod(A^T X A,2)))$; that is the number of 1's in $\mod(A^T X A,2)$. $A$ is a constant binary $k \times n$ matrix; $X$ is an invertible $k \times k$ matrix. Any suggestions on how to do this?
2026-03-28 03:02:33.1774666953
how to minimize $sum(sum(\mod(A^T X A,2)))$
104 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in DISCRETE-OPTIMIZATION
- Optimization - If the sum of objective functions are similar, will sum of argmax's be similar
- Simultaneously multiple copies of each of a set of substrings of a string.
- Do these special substring sets form a matroid?
- What does it mean to dualize a constraint in the context of Lagrangian relaxation?
- How to solve this binary optimization problem?
- What exactly the Ellipsoid method does?
- Give the cutting-plane proof of $\sum\limits_{i,j = 1}^4 x_{ij} \leq 9$.
- Relation with the perfect partition problem and the single machine task schedule problem
- What is the name of following optimization problem and algorithms to solve them
- Integrality gap of maximum weighted clique
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Here is a partial answer. Let $\mathbb F=GF(2)$ and $r=\operatorname{rank}(A)$. There exists a vector subspace $V\subseteq\mathbb F^n$ such that $A^TV=\operatorname{range}(A^T)$. It follows that $$ \begin{aligned} \operatorname{rank}(A^TXA) &\ge\dim(V\cap\operatorname{range}(XA))\\ &=\dim V+\dim\operatorname{range}(XA)-\dim(V+\operatorname{range}(XA))\\ &\ge\dim V+\dim\operatorname{range}(XA)-n\\ &=2r-n.\\ \end{aligned} $$ Thus $\operatorname{rank}(A^TXA)\ge\max(2r-n,0)$. Hence $A^TA$ has $\max(2r-n,0)$ linearly independent columns. In turn, the number of ones in $A^TXA$ is at least $\max(2r-n,0)$.
When $2r\le n$, the aforementioned lower bound is sharp. That is, there exists some $X\in GL_n(\mathbb F)$ such that $A^TXA=0$: just take any $X$ that takes the range of $A$ into the null space of $A^T$. For instance, by using elementary row and column operations, we may express $A$ as $P\pmatrix{I_r\\ &0}Q$, where $P$ and $Q$ are products of elementary matrices in $GL_n(\mathbb F)$. Take $X=(P^{-1})^T\pmatrix{0&I_{n-r}\\ I_r&0}P^{-1}$. Then $A^TXA=0$.
When $r>\frac{n}{2}$, however, the aforementioned lower bound is not always achievable. For example, consider the case where $u=(1,1)^T$, $$ A=\pmatrix{I_2&u\\ 0&0}, \quad X=\pmatrix{Y_{2\times 2}&z\\ z^T&w}, \quad A^TXA=\pmatrix{Y&Yu\\ u^TY&u^TYu}. $$ In this example, we have $n=3,\,r=2$ and $\max(2r-n,0)=1$. However, $A^TXA$ cannot possibly has only one nonzero element. For, if $X$ is invertible, then $Y$ is either invertible or rank-one. Hence it contains at least one $1$. So, if $A^TXA$ has only one $1$, then $Yu$ and $u^TY$ must be zero. Since $u$ is the all-one vector, this means all elements of $Y$ have the same parity. But then $Y$ will be the all-one matrixwhich is a contradiction to the assumption that $A^TXA$ only one $1$.