Maller optimization to reduce proof size posted July 2021
In the PLONK paper, they make use of an optimization from Mary Maller in order to reduce the proof size. This is a note explaining this optimization. If you have no idea what these words are, you might want to skip reading this post :)
Explanation
Maller's optimization is used in the "polynomial dance" between the prover and the verifier to reduce the number of openings the prover send.
Recall that the polynomial dance is the process where the verifier and the prover form polynomials together so that:
- the prover doesn't leak anything important to the verifier
- the verifier doesn't give the prover too much freedom
In the dance, the prover can additionally perform some steps that will keep the same properties but with reduced communication.
Let's see the protocol where Prover wants to prove to Verifier that
$$\forall x \in \mathbb{F}, \; h_1(x)h_2(x) - h_3(x) = 0$$
given commitments of $h_1, h_2, h_3$.
A shorter proof exists. Essentially, if the verifier already has the opening h1(s)
, they can reduce the problem to showing that
$$ \forall x \in \mathbb{F}, \; L(x) = h_1(\mathbf{s})h_2(x) - h_3(x) = 0$$
given commitments of $h_1, h_2, h_3$ and evaluation of $h1$ at a point $s$.
Notes
Why couldn't the prover open the polynomial $L'$ directly?
$$L'(x) = h_1(x)h_2(x) - h_3(x)$$
By doing
The problem here is that you can't multiply the commitments together without using a pairing (if you're using a pairing-based polynomial commitment scheme), and you can only use that pairing once in the protocol.
If you're using an inner-product-based commitment, you can't even multiply commitments anyway.
Appendix: Original explanation from the PLONK paper
https://eprint.iacr.org/2019/953.pdf
For completion, the lemma 4.7:
Comments
leave a comment...