GroebnerBasis::intgb
PolynomialReduce::intgb
GroebnerBasis`GroebnerWalk`GroebnerWalk::intgb
GroebnerBasis`DistributedTermsList::intgb
An error occurs in this example because the coefficients in the polynomials in the first argument of GroebnerBasis are not integers.
GroebnerBasis[{2 / 3 + x, x}, x, CoefficientDomain -> Integers]This computation can be done if the coefficient domain is expanded to include rational numbers.
GroebnerBasis[{2 / 3 + x, x}, x, CoefficientDomain -> Rationals]