Mathematical Notation

Introduction

Throughout CryptoBook, discussions are made more concise by using various mathematical symbols. For some of you, all of these will feel familiar, while for others, it will feel new and confusing. This chapter is devoted to helping new readers gain insight into the notation used.

If you're reading a page and something is new to you, come here and add the symbol, someone else who understands it can explain its meaning

Mathematical Objects

Special Sets

  • C\mathbb{C}: denotes the set of complex numbers

  • R\mathbb{R}: denotes the set of real numbers

  • Z\mathbb{Z}: denotes the set of integers

  • Q\mathbb{Q}: denotes the set of rational numbers

  • N\mathbb{N}: denotes the set of natural numbers (non-negative integers)

  • Z/nZ\mathbb{Z}/n\mathbb Z: denotes the set of integers mod nn

"""
We can call each of these sets with Sage using the 
following commands. Comments are the result of the
input.
"""
CC
# Complex Field with 53 bits of precision
RR
# Real Field with 53 bits of precision
ZZ
# Integer Ring
QQ
# Rational Field
NN
# Non negative integer semiring
Zmod(11) # or `Integers(11)` or `IntegerModRing(11)` 
# Ring of integers modulo 11
  • We refer to unit groups by R×R^\times or RR^*. Example: (Z/nZ)×(\mathbb Z/n \mathbb Z)^\times

  • We refer to finite fields with qq elements by Fq\mathbb{F}_q

  • We refer to a general field by kk

  • We refer to the algebraic closure of this field by kˉ\bar{k}

"""
Example of defining a field and then its 
algebraic closure
"""
GF(3)
# Finite Field of size 3 , where GF stands for Galois Field 
GF(3).algebraic_closure()
# Algebraic closure of Finite Field of size 3
"""
If you want to find which field an element belongs to you can use the 
`.parent()` function
"""

x = 7
print(x.parent())
# Integer Ring

y = 3.5
print(y.parent())
# Real Field with 53 bits of precision
"""
If you want to "lift" an element from a quotient ring R/I to the ring R
use the `.lift()` function
"""
R = ZZ
RI = Zmod(11)
x =  RI(5)

print(x.parent())
# Ring of integers modulo 11

y = x.lift()
print(y.parent())
# Integer Ring

print(y in R)
# True

Relation operators

  • \inmeans is an element of (belongs to)

Logical Notation

  • \forallmeans for all

  • \existsmeans there exists. !\exists! means uniquely exists

Operators

  • Pr(A)Pr(A) means the probability of an event AAto happen. Sometimes denoted as Pr[A]Pr[A]or as P(A)P(A)

Last updated