Using the results of function GF? - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: HP Prime (/forum-5.html) +--- Thread: Using the results of function GF? (/thread-11683.html) |
Using the results of function GF? - leo3065 - 10-27-2018 04:14 PM Currently I'm writing a program which need some operation in Galois field, but I can't find a way to further to use the result of the calculation. So I have some calculations like this: Code: g:=GF(2,8,[x,g,a]) So far so good, but how can I turn things like the result of g(x^10)+g(x^2) into regular polynomials like x^7+x^5+x^3? Doing subst(g(x^10)+g(x^2),a,x) didn't work... |