Galois Field

Galois Field is a finite #Field, meaning it contains a finite number of elements which mathematical operations are defined and satisfy certain basic rules. We can do addition, subtraction, multiplication, and division without leaving the field. The total number of elements in Galois Field must be \(p^n\) where \(p\) is a prime number. It is denoted as \(GF(p^n)\).

Common in Cryptography#, \(GF(p)\) is a Set# where \(\{a \in P | a \in \mathbb{Z} \text{ and } 0 \le a \le p - 1 \}\) with modulo# prime \(p\) as its arithmetic operations. For example, \(GF(7)\) multiplication looks like the table below.

\(\times\)0123456
00000000
10123456
20246135
30362514
40415263
50531642
60654321

Note: Notice the #multiplicative inverse nature of the Galois Field.

Note: The #inverse of the \(a\) could be found in the table by finding the matched row or column with value 1. For example, in the column \(4\), the value 1 appear in the row \(2\), thus \(2\) is the inverse of \(4\) in modulo 7.

Links to this page
#math #cryptography