$\operatorname{GOp}(p, x, b)$
libname := libname, FileTools:-JoinPath(["maple","lib","dcfun.mla"],base=homedir):
with(dcfun):
We illustrate the formula $p \mid \operatorname{MOp}(\operatorname{GOp}(p, x, b), x, b)$.
p := 8*x - 1;
$$8 x -1$$
MG := MOp(GOp(p, x, 3), x, 3);
$$512 x^{3}-1$$
factor(MG);
$$\left(8 x -1\right) \left(64 x^{2}+8 x +1\right)$$
We illustrate the formula $\operatorname{GOp}(\operatorname{MOp}(p, x, b), x, b) = p^b$.
GM := GOp(MOp(p, x, 3), x, 3);
$$512 x^{3}-192 x^{2}+24 x -1$$
factor(GM);
$$\left(8 x -1\right)^{3}$$