aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/exercises.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/exercises.tex b/doc/exercises.tex
index 757788b..94d780a 100644
--- a/doc/exercises.tex
+++ b/doc/exercises.tex
@@ -179,10 +179,10 @@ For improved performance, instead of using \texttt{zmod},
you can use the recursive function
%
\( \displaystyle{
- k \mod (2^n - 1) =
+ k \text{ mod } (2^n - 1) =
\left (
- (k \mod 2^n) + \lfloor k \div 2^n \rfloor
- \right ) \mod (2^n - 1),
+ (k \text{ mod } 2^n) + \lfloor k \div 2^n \rfloor
+ \right ) \text{ mod } (2^n - 1),
}\)
%
where $k \mod 2^n$ is efficiently calculated