Halo2 Part III, Inner product argument

In the halo2 protocol, we commit a polynomial and then evaluate, and later check whether the committed polynomial is the same as the evaluated one. To do this, the original halo2 by ZCash uses inner product argument. The main reference is [BCMS20] and [4.2] in halo2 book.


Assume that we have a polynomial f(X)Fp[X] of degree d, and d+1 is a power of 2. Let G be an additive group of prime order with DLP security. We randomly sampled nonzero GiG for 0id. We also choose a random nonzero hiding factor W,HG. For convenience, every vector notation denotes its vector form, for example, G=(Gi) and f=(mi) if f(X)=i=0dmiXd. And, l and r function make a vector into a half-lengthed vector which output the left half and right half respectively.


Commitment

To commit the polynomial f(X), let mi be a i-th coefficient of f. The prover chooses a random ξFp, and commits

C=Commit(f,ξ)=i=0dmiGi+ξW.

Note that this commitment is linear in mi and ξ.


Open and Check

In this stage, the prover evaluates f(x) for some xFp and makes an evaluation proof so that the verifier can check the evaluation is valid.

Let v=f(x). The prover samples a random polynomial f¯(X) of degree d with zero at x. This can be done by choosing a random polynomial of degree d1 and multiplying Xx. Now, for a random ξ¯, commit f¯.

C¯=Commit(f¯,ξ¯)

The verifier makes a random challenge z,z¯Fp×. Then, the prover sets

f(X)=f(X)v+z¯f¯(X).

and commits f by C=f,G without hiding factor. Now, we want to recursively reduce the size of the proof as in [BCCGP16]. Let x=(1,x,x2,,xd1). I'd like to emphasize that the prover wants to prove f,x=0 and f,G=C. For the first round, let G0=G, x0=x, and f0=f. The prover sends

L0=r(f),l(G)+(zr(f),l(x))H+L0W

R0=l(f),r(G)+(zl(f),r(x))H+R0W

with random L0 and R0. The verifier makes a random challenge u0. To make a half-lengthed proof, let

G1=l(G)+u0r(G)

x1=l(x)+u0r(x)

and the prover calculates new witness

f1=l(f)+u01r(f)

Since l(f),l(x)+r(f),r(x)=0 and l(f),l(G)+r(f),r(G)=C, direct computation yields

f1,x1=u0r(f),l(x)+u01l(f),r(x),

f1,G1=C+u0r(f),l(G)+u01l(f),r(G),

and

zf1,x1H+f1,G1=C+u0L0+u01R0(u0L0+u01R0)W.

By applying this process for m+1=log(d+1) rounds, the last Gm, xm, and fm is just length-one vectors. By accumulating calculations,

zfmxmH+fmGm=C+j=0m1(ujLj+uj1Rj)j=0m1(ujLj+uj1Rj)W.

The prover sent each Lj and Rj for each round, and lastly send witness fm and blinding factors Lj and Rj. Then, the verifier accepts only if the above equation holds.


Multipoint opening argument

We explained how to check evaluation for one polynomial f(X). However, in the halo2 protocol, we use multiple polynomials corresponding to each column and multiple evaluations corresponding to each rotation. To check several evaluations work well with commitments efficiently, halo2 uses a multipoint opening argument.

Let's explain this using an example. What the prover committed is a set of polynomials and rotated polynomials. Say ai(X) for 0i8, ai(ωX) for 3i8, and ai(ω2X) for 6i8 are committed. We can group {ai} by which rotations are used. That is, non-rotated {a0(X),a1(X),a2(X)} are group one, {a3(X),a4(X),a5(X)} are group two, and {a6(X),a7(X),a8(X)} are group three. For each group, let

q1(X)=a0(X)+x1a1(X)+x12a2(X)

q2(X)=a3(X)+x1a4(X)+x12a5(X)

q3(X)=a6(X)+x1a7(X)+x12a8(X)

where x1 is a random challenge given by the verifier. Now, calculate an interpolation polynomial for each group. Recall that x is a random challenge. r1(X) interpolates (x,q1(x)). r2(X) interpolates (x,q2(x)) and (ωx,q2(ωx)), and r3(X) interpolates (x,q3(x)),(ωx,q3(ωx)),(ω2x,q3(ω2x)).

Next, the prover computes

f1(X)=q1(X)r1(X)Xx

f2(X)=q2(X)r2(X)(Xx)(Xωx)

f3(X)=q3(X)r3(X)(Xx)(Xωx)(Xω2x)

and for random x2 given by the verifier, the prover computes

f(X)=f1(X)+x2f2(X)+x22f3(X).

The verifier makes a random challenge x3, then the prover sends evaluations qi(x3). After receiving, the verifier sends a challenge x4 again. Then, we use the inner product argument with

ffinal(X)=f(X)+x4q1(X)+x42q2(X)+x43q3(X).


You can find the full process of halo2 using IPA here. I tried to use consistent notation from there.

댓글