Skip to content

Commit

Permalink
Merge pull request #164 from daira/book-decomposition
Browse files Browse the repository at this point in the history
[book] decomposition.md: avoid introducing `m` when we already have `range`
  • Loading branch information
str4d committed Jul 27, 2021
2 parents ee878dd + b2e25b5 commit a273307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/src/design/circuit/gadgets/decomposition.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ $$q_\mathit{lookup} \cdot \left(q_\mathit{running} \cdot (z_i - 2^K \cdot z_{i+1
where $z_i$ and $\textsf{word}$ are the same cell (but distinguished here for clarity of usage).

## Short range decomposition
For a short range (for instance, $[0, m)$ where $m \leq 8$), we can range-constrain each word using a degree-$m$ polynomial constraint instead of a lookup: $$\texttt{range\_check(word, range)} = \texttt{word} \cdot (1 - \texttt{word}) \cdots (\texttt{range} - 1 - \texttt{word}).$$
For a short range (for instance, $[0, \texttt{range})$ where $\texttt{range} \leq 8$), we can range-constrain each word using a degree-$\texttt{range}$ polynomial constraint instead of a lookup: $$\texttt{range\_check(word, range)} = \texttt{word} \cdot (1 - \texttt{word}) \cdots (\texttt{range} - 1 - \texttt{word}).$$

0 comments on commit a273307

Please sign in to comment.