Got a simple construction seemingly contradicting a paper assuming plausible conjecture.
Since it is unlikely the conjecture to be false, what is wrong with the argument?
An AND-compression is a deterministic polynomial-time algorithm that maps a set of SAT-instances $x_1,\dots,x_t$ to a single SAT-instance $y$ of size $\text{poly}(\max_i |x_i|)$ such that $y$ is satisfiable if and only if all $x_i$ are satisfiable. ... Unless the unlikely complexity-theoretic collapse $\sf coNP \subseteq NP/poly$ occurs, there is no AND-compression for SAT.
Construction:
If $x_i$ are not in CNF, convert them to CNF possibly adding new variables. This is polynomial.
In CNF one can encode AND gate $ C := A \land B $ and OR gate $ C := A \lor B $.
The AND and OR gates have the property that for all satisfying assignments of their CNFs we have $C \iff (A \land B)$ and $C \iff (A \lor B)$.
Let the $j$-th clause in $x_i$ be $x_{i,j} = [y_1, \ldots, y_k]$ for literals $y_m$.
Using the OR gate and new variables, compute variable $O_{i,j} := y_1 \lor y_2 \cdots \lor y_k$.
For all clauses in $x_i$ ($O_{i,j}$) and the AND gate compute variable $V_i := O_{i,1} \land O_{i,2} \land \cdots \land O_{i,m}$.
By construction $x_i \iff V_i$.
For all $V_i$, using the AND gate compute $F := V_1 \land \cdots \land V_t$.
$F \iff x_1 \land \cdots \land x_t$.
So the final formula $y$ is the union of the CNFs for $O_{i,j}$,$V_i$,$F$, and a unit clause $[F]$.
$|y|$ is linear in the number of all literals, $t$ is polynomial in $\max |x_i|$, which makes $|y|$ polynomial in $\max |x_i|$.
This appears to contradict the claim in the paper, unless the certain collapse happens.
What is wrong with this argument that appears to contradict the claim in the paper?
Similar construction works for OR-compression, when at least one $x_i$ must be satisfiable.
The newly introduced variable are uniquely determined by the original variables.
OR gate in CNF 3 := 1 \/ 2 : [[1 2 -3],[-1 3],[-2 3]] AND gate in CNF 3 := 1 /\ 2 : [[-1 -2 3],[1 -3],[2 -3]]