*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/help/×sign multiply.html).* # Times (`×`) `× 𝕩`: Sign Sign of `𝕩`. - `¯1` if `𝕩 < 0` - `0` if `𝕩 = 0` - `1` if `𝕩 > 0` [Pervasive.](https://mlochbaum.github.io/BQN/doc/arithmetic.html#pervasion) × ¯5‿0‿5‿1 ⟨ ¯1 0 1 1 ⟩ `𝕨 × 𝕩`: Multiply `𝕨` multiplied by `𝕩`. [Pervasive.](https://mlochbaum.github.io/BQN/doc/arithmetic.html#pervasion) 1 × 2 2 2 × 2‿3‿4 ⟨ 4 6 8 ⟩