Factoring Polynomial in Finite field
how to factor x^m+a*x+1 this polynomial in F2^(2m) with m,a unknown,can I use the factor function in sagemath? If not ,how can I solve this problem?
how to factor x^m+a*x+1 this polynomial in F2^(2m) with m,a unknown,can I use the factor function in sagemath? If not ,how can I solve this problem?
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2022-10-18 09:20:27 +0100
Seen: 146 times
Last updated: Oct 18 '22
It seems it's
a*x
and nota^x
.Thx for correction. I don't think Sage is capable of factoring polynomials of varying degree. But you can have a function that will factor such polynomial for any given values of
a
andm
.