python
F=GF(2^8,'a')
R=PolynomialRing(F,"x,y")
R.inject_variables()
f=x*y-1
How can we transform f
into a multivariable Boolean polynomial over F28, which includes variables x0,…,x7 and y0,…,y7 (16 variables in total), and has an algebraic degree of 2?