Consider the following problem:
$$\begin{array}{ll} \underset{{\bf x} \in \{0, 1\}^N}{\text{minimize}} & {\bf x}^\top {\bf A} \, {\bf x}\\ \text{subject to} & {\bf B} {\bf x} = {\bf c}\end{array}$$
where ${\bf A} \in \{0, 1\}^{N \times N}$ is symmetric, ${\bf B} \in \{0, 1\}^{M \times N}$ and ${\bf c} \in \{0, 1\}^{M}$. Additionally, $N = kM$.
I'm wondering if this kind of problem has been studied. Has this problem a name? Does this problem have a closed form solution? Alternatively, is there some results on the lower bound of this problem? I.e., does there exist a number $\phi$ such that the following holds?
$$\min_{{\bf x} \in \{0, 1\}^N} {\bf x}^\top {\bf A} \, {\bf x} \geq \phi$$
I'm not looking for an algorithm for the solution of a specific instance. Rather, I'm looking for theoretical results on this kind of problem.
You can simplify this "quadratic binary programming" (QBP) problem by using any $c_i=0$ to eliminate all $x_j$ for which $B_{i,j}=1$. Hence you can reduce to $Bx=1$. Any such constraints $i$ with only one nonzero value of $B_{i,j}$ then force $x_j=1$, and you can eliminate $x_j$ and any constraints that involve $x_j$. After repeating these preprocessing steps until nothing changes, you are left with $Bx=1$, where each row of $B$ contains at least two nonzero values. You can call a QBP solver or linearize as follows. Introduce a binary variable $y_{i,j}$ to represent the product $x_i x_j$, together with linear constraints $y_{i,j} \le x_i$, $y_{i,j} \le x_j$, and $y_{i,j} \ge x_i + x_j-1$, and then call an integer linear programming solver.