This has been copied from a hackmd post I made before this site was active.
Document structure
This document is split into five sections:
Preliminaries: This is background knowledge that will be helpful in understanding the rangeproof protocol.
PLONK Programs: This is the abstraction over PLONK that allows us to think of PLONK circuits as Programs where each row is a gate, and the row that the program is currently at is the state.
Rangeproof protocol: This section describes the rangeproof protocol by Aztec in isolation.
Rangeproof in PLONK: This section describes how the rangeproof protocol integrates into PLONK using the PLONK programs abstraction
Extras: Includes questions, details ommitted and further questions.
Notation
We use to denote a binary number. is therefore 3 in decimal. In general we use to denote the digits , , , are in base . If the base is omitted, then it means base-10 ie is the same as writing
Preliminaries
This section will briefly note how rangeproofs work in essence using base-2. We then show how to convert a number represented in base-2 to a number represented in base-4, as this is the base that is used in the protocol by Aztec that is introduced.
Rangeproofs In Essence
The rough idea behind rangeproofs is the following:
- Given a number x, if for example, we can show that x can be represented using 4 bits.
- Then x must be between and .
- In decimal x is within the range 0 and 15.
Generalisation
We can generalise the above argument.
- Given a number x, if we can show that x can be represented using n base-k digits.
- Then x must be between and
- In decimal
How do we show that x has n base-k digits?
This is protocol specific, this document will only discuss the method by Aztec. In their protocol, base-4(quaternary) is used. We therefore briefly recap, how to convert base-2 to base-4, as the number is initially given in base-2.
Base-2 to Base-4
Because converting between binary and quaternary is fairly trivial.
- Given a number in binary form
- Starting from the right, group each digit into pairs
- Use Table1 to convert the numbers to base-4
We will elaborate with an example.
Binary | Quaternary |
---|---|
00 | 0 |
01 | 1 |
10 | 2 |
11 | 3 |
Table1 : Showing how to convert two binary digits to quaternary
Example
- Given x is .
- Lets split x into pairs
- Using Table1, x in base-4 is
What if we do not have an even number of binary digits?
Pad the left with an extra zero. Howver, in the protocol we will require an even number of digits.
Note
Note that if can be represented as 10 binary digits, then it can be represented as 5 quaternary digits. If can be represented as 11 binary digits, we must append a zero to make it even, so in quaternary can be represented as 6 digits.
PLONK Programs
This section will explain the abstraction from PLONK circuits to PLONK programs.
Brief overview of PLONK
In [2] Page 28, the quotient polynomial t(x) is defined.
We can split up the quotient polynomial into two parts:
- Part a asserts that the circuit must be satisfied (Circuit satisfiability)
- Part b asserts that the conditions for the Permutation argument must be satisfied. (Copy satisfiability)
We will focus on Part a, the circuit satisfiability equation.
The following equation asserts that the i’th gate must satisfy the following equation, where is the i’th left wire, is the i’th right wire and is the i’th output wire. The equation being satified at the i’th gate, depends on the values of , , , , .
Note (can skip)
If we have n gates, we have n equations. In PLONK, these equations are merged together to form polynomials. ie is the polynomial formed by merging each at each gate. , , , , are called the selector polynomials. The set of selector polynomials is the circuit description.
Lookahead
We briefly note that the equation for the i’th gate, has access to the wires in the i+1’th gate.
Program
Observations
- The i’th equation will be applied to the i’th gate. We can think of PLONK as a collection of tuples
- If each tuple is satisfied then our circuit is satisfied.
Below I will write out the tuples in a row.
A | B | C |
---|---|---|
Table2: Shows a PLONK program without the equations being applied to them
In Table2:
- Column A denotes all of the left wires for the circuit and so forth. ie is the first left wire in the first gate.
- Row 1 denotes the wires that are used in the first gate. This is the row that will be applied to.
- The PLONK program is satisfied if for all
Definitions
Program width - The program width is the number of columns. The PLONK program in Table2 has a width of 3.
Program depth - The program depth is the number of row. The PLONK program in Table2 has a program depth of 3.
Square Program - If the program width is equal to the program depth, we say the program is square.
Summarising
We can now view PLONK circuits as PLONK programs where the i’th row signifies all of the wires at the i’th gate. A PLONK program is satisfied, if the corresponding equation is satisfied for each row.
Rangeproof Protocol
Goal: We want to prove that x is within the range
Outline
We first convert x into base-4. We then prove using accumulators that , , and are base-4 digits that represent x, which means that x must be within the range =
Preparation Stage
This stage takes a number in binary and converts it to base-4.
Let x be a 8-bit number.
=
Accumulation Stage
In this stage, we accumulate our quaternary digits in such a way that allows us to constrain them to be between 0 and 3.
= The number of quaternary digits - 1. In our case n is 3.
The equation for the accumulators is as follows:
Checking the Accumulation Stage
This section computes each accumulator for x and makes a few observations that will allow us to assert the digits are indeed quaternary.
Let’s rewrite it without the algebra:
Observations
- Observe that .
- if is a quaternary digit, then .
- This proves that is a base-4 digit.
- Observe that .
- if is a quaternary digit, then .
- This proves that is a base-4 digit.
- Observe that .
- if is a quaternary digit, then .
- This proves that is a base-4 digit.
What about ?
The easiest way to prove that is also a base-4 digit is to add an extra accumulator whose value is zero.
- Observe that
- If is a quaternary digit, then
- This proves that is a base-4 digit.
Constraining Stage
This section generalises the observations made when we checked the accumulation stage.
In general we observed that if :
Then the digits that were used in the accumulators were all base-4. Since x can be represented with , , , $q_3$$. x \in [0, 4^4 -1$ = $[0,2^8 -1]$
But wait
How do we know that these values represent x?
Notice that the last accumulator is equal to the value of x. ie the value that we are trying to prove is within the desired range. In the next section, we can link the two together by constraining . This will cost an extra gate.
Rangeproof in PLONK
This section will explain how the rangeproof protocol and PLONK merge together.
Goal : We want to prove using our rangeproof protocol in PLONK, that a number x is within the range
Preparation stage
- We first initialise a PLONK program with a width of 4.
A | B | C | D |
---|
Table3: Shows a PLONK program with a width of 4
- Add the value x you want to prove as a witness.
Accumulation stage
We compute the accumulators .
Observe: For a 32 bit number, we will have 16 base-4 digits. Which in turn means, we will have 16+1 accumulators including the accumulator. In general, to constrain a n-bit number, we will require accumulators.
Observations
For clarity, let’s observe what our program will look like with the accumulators added.
A | B | C | D |
---|---|---|---|
- | - | - |
Table4: Shows a PLONK program with a width of 4
Focussing on the first row: We apply to the following pairs of accumulators , , .
The only out of place tuple is , however remember that PLONK equations have access to the wires in the row below it.
Observe : Each row has enough information to constrain 3 quaternary digits. However, when is applied to a row, we can constrain 4 base-4 digits, because the equation has access to the next row. This is seen in Table4 where for a 32-bit number, we have 16 quaternary digits, however we need 5 rows, where the last row has unused wire values. In general, for an n-bit range proof, we will need rows.
How many gates?
Since each row signifies a gate, for a 32-bit range proof, we will require gates.
Row Equation
One caveat that has been glossed over is the equation that is applied to each row.
- How do we show that a number is either 0,1,2 or 3?
- Doesn’t the equation need to be equal to zero?
Outline
We show that each is one of the roots to the polynomial
First we define 3 convenience variables, by repeatedly applying
is the d wire in the next row.
The equation for each row is as follows:
This equation forces each to be either 0,1,2 or 3. This in turn forces each to be 0,1,2 or 3.
Last Step
The last step is to constrain the last accumulator to the value where is the witness value that we were trying to prove was within a range.
Numbers
In order to constrain a 32-bit number in PLONK. It will require 6 gates. 5 gates to constrain the quaternary digits and an extra gate to constrain the last accumulator to the witness value.
Extras
Omissions
- The random challenge that is applied to the circuit satisfiability equation was omitted.
- The public inputs polynomial was omitted from the quotient polynomial equation.
Possible questions
Why is base-4 used and not base-8?
Looking back at the Row Equation, if we use base-8 then the degree of the quotient polynomial will be 8n. This would increase the proof size by adding 5 extra elements. Instead of , , we would have ,,,,,,,.
Are there any advantages to using base-8 over base-4?
If we use base-8, there will be less digits. This is because, base-8 will use less digits to represent a number than base-4. This in turn means, that there will be less accumulators since the amount of accumulators will be proportional to the amount of digits we want to show is in base-8. Less accumulators means less witnesses, which means a smaller circuit size. But is this trade-off worth it because we add 5 extra group elements.
What about base-2?
Base-2 will not increase the quotient polynomial as the equation we would need to check for each row would be . We would however, have more witnesses. The question, I cannot answer is then How was base-4 chosen?