There is no commentSelect some text and then click Comment, or simply add a comment to this page from below to start a discussion.
Grand product arguments
Let be a finite field and consider a vector , where . Given some kind of commitment to and a value , we want to convince a verifier that the product of the elements of is , .
Using AIR constraints
This problem can be solved using univariate polynomials and AIR constraints. This is the approach taken in Plonk[1].
Let be the vector of cumulative products of . The equality is equivalent to . Therefore, a protocol to prove this equality is to commit to both and and check the following AIR constraints
,
for all ,
.
Using GKR
This is the approach of [Tha13, 5.3.1][2]. For , we consider the vector of size given by Note that and is the constant . The vector can be seen as the -th layer in the binary multiplication tree with leaves . These vectors satisfy the relations Seeing as a function instead, the relation becomes Therefore, the MLEs satisfy and thus for any we have The evaluation of this sum can be proved using the sumcheck protocol. At the end of the protocol, the verifier needs to evaluate at and for a random .
The trick to do so efficiently is to consider the degree one univariate polynomial for . We have therefore to send it is sufficient to send and (which are anyways required by the verifier). Then the verifier sends a random and uses the sumcheck protocol to check that Therefore, proving an opening can be reduced to a sumcheck argument and an opening .
The strategy to prove is then clear:
Reduce the evalutation proof to a sumcheck argument and an evaluation .
For , reduce the evalutation proof to a sumcheck argument and an evaluation .
The last evaluation is proved using the commitment to .
Costs
Prover: A sumcheck argument costing for and an evaluation proof for , so in total . The commited polynomial is of size .
Verifier: A sumcheck argument costing for and an evaluation proof for , so in total .
Proof size: A sumcheck argument of size for and an evaluation proof for , so in total .
Quarks
This is the approach of [SL20, Section 5][3]. Instead of using different functions , we can pack them into a single function given by and . Note that for and . Furthermore, the relation between the adjacent functions and becomes Let for , then is the zero polynomial, which we can check with the usual zero-check where is a random verifier challenge, which is proved with a sumche Therefore, the product can be proved by commiting to and
using the sumcheck argument to prove ,
prove by checking for a random ,
open .
Costs
Prover: A sumcheck argument costing and evaluation proofs for and , so in total . The commited polynomials are of size and of size .
Verifier: A sumcheck argument costing and evaluation proofs for and , so in total .
Proof size: A sumcheck argument of size and evaluation proofs for and , so in total .
Note that compared to GKR, the verifier cost and proof size go from quadratic in to linear in , at the cost of more and larger evaluation proofs.
Hybrid approach
This is the approach of [SL20, Section 6][3:1], also used in Lasso[4]. We can get the best of both approaches by combining them. Fix a number , we use the Quarks approach for the first layers and the GKR approach for the last layers . Concretely, this means that in the Quarks protocol, we instead have for all , which we check by evalutating at a random value , . The evaluation is computed using the GKR protocol, by reducing it to a sumcheck argument and an evaluation of , and so on until an evaluation of .
Costs
Prover: for Quarks + for GKR, so in total, plus commitments to of size and of size .
Verifier: for Quarks + , so in total, plus cost of evaluation proofs.
Proof size: Similarly to the verifier costs, in total, plus size of evaluation proofs.
For example, setting , the proof size is which is better than the proof size of when using only GKR for large enough . This comes at the cost of commiting to of size , which is much smaller than , the corresponding size of when using only Quarks.