We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Taking noncommuting variables to the zeroth power can lead to surprising results:
using DynamicPolynomials @ncpolyvar a x p = x^0 * a # displays as `a` p == a # returns true (expected behavior) a == p # returns false (bug)