Ask Your Question
1

Model polynomials of $GF(p)$ as polynomials of $GF(p^n)$

asked 2023-02-02 14:42:06 +0200

Mairon gravatar image

updated 2023-02-06 19:25:35 +0200

dan_fulea gravatar image

Imagine that we have polynomials $$F_1, F_2, \ldots, F_n : \mathbb{F}_p \rightarrow \mathbb{F}_p\ ,$$ $n$ polynomials in $n$ variables, which define a map of sets $\mathbb{F}_q \rightarrow \mathbb{F}_q$, $q = p^n$, and we want to find the map as a single univariate polynomial over $\mathbb{F}_q$. This is a follow-up question that is answered already here for the reverse direction.

edit retag flag offensive close merge delete

Comments

1

The reverse direction of the previous question would be taking $n$ polynomials in $n$ variables $F_1, F_2, \ldots, F_n : \mathbb{F}_p^n \rightarrow \mathbb{F}_p$ which (given a choice of generator for $\mathbb{F}_{p^n}$) define a map of sets $\mathbb{F}_{p^n} \to \mathbb{F}_{p^n}$, and trying to realize that map as a single univariate polynomial over $\mathbb{F}_{p^n}$.

rburing gravatar imagerburing ( 2023-02-02 18:32:09 +0200 )edit

Yes, I will update the question with the better description. But that's what I had in mind, is it possible?

Mairon gravatar imageMairon ( 2023-02-03 10:34:46 +0200 )edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-02-02 15:43:34 +0200

Max Alekseyev gravatar image

Just use .change_ring() method:

p = 7
R.<x> = GF(p)[]
f = x^2 + x + 1
g = f.change_ring(GF(p^3))
edit flag offensive delete link more

Comments

Thank you, I didn't explain the question clearly, I update it.

Mairon gravatar imageMairon ( 2023-02-03 10:39:09 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2023-02-02 14:42:06 +0200

Seen: 143 times

Last updated: Feb 06 '23