Glee Cheatsheet: Numeric operators

Keys: D: Dyadic; M: Monadic; N: Niladic

Numeric operators: (click for examples & comments)
D + Plus M \+ Sum D /+ Moving Sum
M + Signum M \+% Average M /+ Running Sum
M /+%% Total Ratio M /+% Running Average D /+% Moving Average
D - Minus M \- Median D ^& Contains All
M - Negate M \= Mode D ^| Contains Any
      D *& Mark All D *| Mark Any
D * Times M \* Product D /* Moving Product
      D *+ Compounding M /* Running Product
D / Divided by M / Reciprocal      
D #! Number of Combinations D ! Combinations M ! Factorial
D #!! Number of Permutations D !! Permutations M /<< Running Smallest
D << Smaller of M \<< Smallest D /<< Moving Smallest
D >> Larger of M \>> Largest D />> Moving Largest
M | Absolute value M & Unique M />> Running Largest
D | Union D & Intersect      
D % Modulo M %\ Floor D %\ Near lower
M % Fractional Part M %/ Ceiling D %/ Near higher
M %- Half round D %- Near round      
D %> Base D %< Represent      
D ^ Power D #LOG Log base n M #LOG Common Log
M ^ Exponent D #LN Log base n M #LN Natural Log
N ^ e D -- Nth- Difference M -- First- Difference