What is this?
I am new to Maple and still learning syntax, what I would like to do is to generate the elemets of GF(8) or to even how to multiply ploynomials modulo x^3 + x +1?
Thanks for help any one can provide.
The elements of GF(8), represented as Z_2[x]/<x^3+x+1>:
> 0, seq(Rem(x^j, x^3+x+1, x) mod 2, j = 1 .. 7);
Multiplying polynomials mod :
> rem((x^2+x+1)*(x+1), x^3+x+1, x);
Doing it over :
> Rem((x^2+x+1)*(x+1), x^3+x+1, x) mod 2;
You could also try using GF, but I find it unpleasant.
Thanks for your fast response, that was exactly what I needed.
Regards
Alan
GF(8)
The elements of GF(8), represented as Z_2[x]/<x^3+x+1>:
Multiplying polynomials mod
:
Doing it over
:
You could also try using GF, but I find it unpleasant.
Thanks for your fast
Thanks for your fast response, that was exactly what I needed.
Regards
Alan