Arithmetic functions

Since BQN's function syntax was designed to mirror mathematical operators, its arithmetic tends to look a lot like mathematical notation. Individual functions are listed below. As an array language, BQN applies arithmetic element-wise to arrays, a system known as pervasion. A distinctive feature of BQN is its character arithmetic, which allows + and - to manipulate characters without explicitly transforming them to numbers.

Summary of other differences from APL:

Basic arithmetic

These functions are also introduced in the first BQN tutorial.

BQN of course supports the elementary functions taught in schools everywhere:

Symbol Dyad Monad default 𝕨
+ Add (Conjugate)
- Subtract Negate 0
× Multiply Sign
÷ Divide Reciprocal 1
Power Exponential e
Root Square root 2

The dyadic (two-argument) functions should all be familiar operations, and most likely you know the symbols +-×÷√. In fact the large × and ÷ might strike you as a regression to early school years, before division was written vertically and multiplication with a simple dot or no symbol at all. Like these, raising to a power or exponentiation is made regular by giving it the symbol —a true Unicode star and not an asterisk. The Root function is also modified to be a binary function, which raises 𝕩 to the power ÷𝕨. In ASCII programming languages ×, ÷, and are often written *, /, and ^ or **.

↗️
    2 + 3105
⟨ 5 3 2 7 ⟩

    25 - 19
⟨ 1 ¯4 ⟩

    1.520.5 × 2
⟨ 3 4 1 ⟩

    341 ÷ 2
⟨ 1.5 2 0.5 ⟩

    3  012
⟨ 1 3 9 ⟩

    4  81
3

Each of these functions also has a meaning with only one argument, although mathematics only defines - in this way. The relationship of negation to addition is extended to division (relative to multiplication) as well, so that ÷𝕩 gives the reciprocal 1÷𝕩 of its argument. Power () is also extended with a default left argument of Euler's number e. The default left argument for Root is 2, giving the well-known Square Root.

↗️
    - 6
¯6

    ÷ 012
⟨ ∞ 1 0.5 ⟩

     012
⟨ 1 2.718281828459045 7.38905609893065 ⟩

     0124
⟨ 0 1 1.4142135623730951 2 ⟩

Take note of the difference between the function -, and the "high minus" character ¯, which is a part of numeric notation. Also shown is the number , which BQN supports along with ¯∞ (but depending on implementation BQN may or may not keep track of ¯0. Integer optimization loses the distinction so it's best not to rely on it).

The logarithm is written with Undo: . As with Power, the default base is e, giving a natural logarithm.

↗️
     10
2.302585092994046

    2  1024
10

Two other one-argument forms carried over from APL aren't based on default arguments. + is Complex Conjugate—which, given that no existing BQN implementation supports complex numbers, never does anything now. × returns the sign of its argument: 0 if it's equal to 0, ¯1 if it's less, and 1 if greater.

↗️
    + ¯240.1
⟨ ∞ ¯2 4 0.1 ⟩

    × ¯2¯004
⟨ 1 ¯1 0 0 1 ⟩

Character arithmetic

The Add and Subtract functions can be applied to characters as well as numbers. While any two numbers (finite ones, at least) can be added or subtracted, character arithmetic has more restrictions.

𝕨 Number Character 𝕩 Number Character + - + - + -

The allowed operations are that a number can be added to or subtracted from a character, giving a character, and a character can be subtracted from another, giving a number.

↗️
    3 + "abcde"
"defgh"

    'c' - 2
'a'

    'c' - "abc"
⟨ 2 1 0 ⟩

It's not possible to add two characters or subtract a character from a number. Furthermore, an operation that results in a character will give an error if its code point would be invalid Unicode (either it's not a natural number or it's outside of the allowed ranges).

The literal @ indicates the null character—code point 0—so that the character with code point n is @+n and the code point of a character c is c-@.

↗️
    'a' - @
97

Additional arithmetic

Symbol Monad Dyad
Floor Minimum
Ceiling Maximum
| Absolute Value Modulus

Now the monadic function symbols resemble those used in mathematics. In the case of Floor and Ceiling, this is because Ken Iverson invented them! As with other functions, he adapted them to use more uniform syntax in order to create APL\360, in this case by removing the paired closing version of each one.

↗️
     π
3

     ¯0.633.01
⟨ 0 3 4 ⟩

    | ¯∞¯602
⟨ ∞ 6 0 2 ⟩

Floor () returns the largest integer less than or equal to the argument, and Ceiling () returns the smallest one greater than or equal to it. For this purpose ¯∞ and are treated as integers, so that the floor or ceiling of an infinity is itself. Absolute value removes the sign of 𝕩 by negating it if it's less than 0, so that its result is always non-negative.

Minimum () returns the smaller of its two arguments, and Maximum () returns the larger. These functions are loosely related to Floor and Ceiling in their use of comparison, and can be defined similarly: for example, the minimum of two numbers is the largest number less than or equal to both of them. To take the minimum or maximum of an entire list, use a fold.

↗️
    3  8
⟨ 0 1 2 3 3 3 3 3 ⟩

     8
⟨ 7 6 5 4 4 5 6 7 ⟩

Modulus (|) is similar to the modular division operation written % in C-like languages, but it takes the arguments in the opposite order, and differs in its handling of negative arguments. It's the same computation as {𝕩-𝕨×⌊𝕩÷𝕨} but probably has better precision.

↗️
    3 | 8
⟨ 0 1 2 0 1 2 0 1 ⟩

    3 | ¯5
1

Unlike in APL, a left argument of 0 fails or returns a not-a-number result. Set 𝕨 to to keep 𝕩 intact, but do note that if 𝕩<0 this will return .

Comparisons

BQN uses the six standard comparison functions of mathematics. For each pair of atoms the result is 1 if the comparison is true and 0 if it's false. These functions do the obvious thing with numeric arguments, but are extended to other types as well.

Name Glyph < = > Domain
Equals = 0 1 0 Any
Not Equals 1 0 1 Any
Less Than or Equal to 1 1 0 Data
Less Than < 1 0 0 Data
Greater Than > 0 0 1 Data
Greater Than or Equal to 0 1 1 Data

The ordered comparisons ≤<>≥ are defined on numbers and characters (and arrays, by pervasion); they give an error for operation or namespace arguments. They order numbers as you'd expect, and characters by their code points. A character is considered greater than any number, even .

↗️
    3456  5
⟨ 1 1 1 0 ⟩

    'c' < "acbz"
⟨ 0 0 0 1 ⟩

    ¯∞π  @'0''?'
⟨ 0 0 0 ⟩

Equals and Not Equals are the two equality comparisons. Equals tests for atomic equality between each pair of atoms, as described in the Match documentation. Essentially, it returns 1 only if the two values are indistinguishable to BQN and 0 otherwise. Values of different types can never be equal, and characters are equal when they have the same code point.

↗️
    +-×÷ = -
⟨ 0 1 0 0 ⟩

    'b'  "abacba"
⟨ 1 0 1 1 0 1 ⟩

Pervasion

Arithmetic primitives act as though they are given depth 0, so that with array arguments they treat each atom independently. While the examples above use only numbers or lists of them, arithmetic applies to nested and high-rank arrays just as easily.

↗️
    × ˘¯8,¯9⟨⟨2,0,4,5
┌─                 
╵ ⟨ ¯1 ¯1 ⟩        
  ⟨ ⟨ 1 0 ⟩ 1 1 ⟩  
                  ┘

With two arguments, many combinations are possible. Arrays of equal shape are matched element-wise, and an atom is matched to every element of an array.

↗️
    102030 + 567
⟨ 15 26 37 ⟩

    10 × [432,678]
┌─          
╵ 40 30 20  
  60 70 80  
           ┘

Arrays with different ranks can also be paired: they are matched by leading axis agreement. This means that one shape must be a prefix of the other, and elements of the lower-rank array are repeated to match up with cells of the higher-rank one.

↗️
    123  [01,24,36]
┌─        
╵  1   1  
   4  16  
  27 729  
         ┘

This convention matches up with the way array nesting is handled: first, the leading "outer" axes are looped over, then later ones.

↗️
    123  01,24,36
⟨ ⟨ 1 1 ⟩ ⟨ 4 16 ⟩ ⟨ 27 729 ⟩ ⟩