I am learning multiplication in finite fields, and would like to clarify a few basic concepts:
First: Is there a standard mapping between (regular) integers and elements of a finite field? For example, consider the integers and the finite field $GF(2^8)$. Then $0$ the integer corresponds to $0$ in the finite field. $1$ corresponds to $x^0$, $2$ to $x^1$, $3$ to $x^1 + x^0$, $4$ to $x^2$. Is there a standard term for this?
(SAGE math seems to implement this mapping via fetch_int and integer_representation.)
Second: Integers $p,q,r < 2^n$ meet $pq = r$. Let $m(p)$ be the mapping of $p$ to $GF(2^{2n})$ similar to how I described. Then it follows that $m(p)*m(q) = m(r)$. This is true because $r$ is small enough that it need not be reduced. Is that correct?
If I am making a basic mistake, please explain: I am new to finite fields.