Under

Under 𝔽𝔾 𝔽 𝔾 𝔾 "udner" "dn" "uNDer" "ND"

The Under 2-modifier expresses the idea of modifying part of an array, or applying a function in a different domain, such as working in logarithmic space. It works with a transformation 𝔾 that applies to the original argument 𝕩, and a function 𝔽 that applies to the result of 𝔾 (and if 𝕨 is given, 𝔾𝕨 is used as the left argument to 𝔽). Under does the "same thing" as 𝔽, but to the original argument, by applying 𝔾, then 𝔽, then undoing 𝔾 somehow.

It's not always possible to undo 𝔾, so only some right operands will work. BQN supports two cases. Computational Under tries the Undo modifier, so that 𝔽𝔾 is 𝔾𝔽𝔾.

↗️
    3 +(ט) 4  # Square root of sum of squares
5

Structural Under is used when 𝔾 selects part of the array. BQN tracks what was selected and puts the results from 𝔽 back where they came from.

↗️
    +` 310, 25, 006  # Prefix sum, keeping structure
⟨ ⟨ 3 4 4 ⟩ ⟨ 6 11 ⟩ ⟨ 11 11 17 ⟩ ⟩

Structural Under is an essential part of BQN because of how it can "change" an immutable array, and it supports more functions and is always well defined. Computational Under's nice, but not so important. The reason they can both be supported as a single primitive is that they follow this unifying principle:

(𝔾 𝕨𝔽𝔾𝕩)  𝕨𝔽𝔾𝕩

That is, when you apply 𝔽𝔾 before applying 𝔾, you get the value that comes from applying 𝔽 after 𝔾. The definition of computational under comes from applying 𝔾 to both sides and cancelling 𝔾𝔾, which solves the constraint but doesn't have to be a unique solution. For structural Under, the reason this works is that 𝔾 selects out the parts of 𝔽𝔾 that were placed back in by Under. Other parts are defined to be the same as it was in 𝕩, so the result is fully specified.

Structural Under

A structural function is one that moves elements around without performing computation on them. It's okay if it performs computation, but it has to be based on the structure of its argument—shape, and element structure—and not on the values of atoms in it. As an example, the function ˘ selects the first column of an array.

↗️
     a  43⥊↕12
┌─         
╵ 0  1  2  
  3  4  5  
  6  7  8  
  9 10 11  
          ┘

    1(˘) a
┌─         
╵ 3  1  2  
  6  4  5  
  9  7  8  
  0 10 11  
          ┘

When used with Under, the function 1 applies to the first column, rotating it. The result of 𝔽 needs to be compatible with the selection function, so Rotate works but trying to drop an element is no good:

↗️
    1(˘) a
Error: ⁼: Inverse not found

BQN can detect lots of structural functions when written tacitly; see the list of recognized forms in the spec. You can also include computations on the shape. For example, here's a function to reverse the first half of a list.

↗️
    (⊢↑˜≠÷2˙) "abcdef"
"cbadef"

But you can't use a computation that uses array values, such as 10+((<5)/) to add 10 to each element below 5. This is because Under can change the array values, so that the function 𝔾 doesn't select the same elements before and after applying it (contrarily, Under can't change array structure, or at least not the parts that matter to 𝔾). To use a dynamic selection function, compute the mask or indices based on a copy of the argument and use those as part of 𝔾.

↗️
    {10+((𝕩<5)/)𝕩} 38226
⟨ 13 8 12 12 6 ⟩

    (<5)/ 38226
⟨ 3 2 2 ⟩

    (<5)/ {10+((𝕩<5)/)𝕩} 38226
⟨⟩

Under is useful with scans, as discussed in a section on reverse scan. In this case, is exactly invertible, so can just as easily be seen as computational Under. When 𝔾 has an exact inverse, there can only be one solution to the constraint on Under, and both forms must be the same.

↗️
    ` 1010111
⟨ 0 0 0 0 1 1 1 ⟩

Structural Under is the same concept as a (lawful) lens in functional programming (see also bidirectional transformation). Lenses are usually defined as getter/setter pairs, but BQN's restriction to structural functions makes an implicit setter work even for polymorphic array functions.

Computational Under

Computational Under is based on Undo (), and applies whenever structural Under doesn't. It's still limited, because Undo doesn't work on many or even most functions. One common use is with the square function ט, for computations such as finding the magnitude of a vector, or a root-mean-square average like the one below.

↗️
    (+´÷≠)(ט) 2345
3.6742346141747673

This average is the square root of the average of the squares of the arguments, and lets us combine the two square-y steps. Here there are two possible solutions because ¯3.67 has the same square as the positive result; BQN of course uses the principal root. Similarly, ÷ can be used for a harmonic sum or mean (you might notice that computational Under is a lot more mathy than the structural one).

Under is the idiomatic way to do a round-to-nearest function:

↗️
    (10×) 3.5246.7992.031
⟨ 3.5 6.7 2 ⟩

See how it works? rounds down to an integer, but we can get it to round down to a decimal by first multiplying by 10 (so that single decimals become integers), then rounding, then undoing that multiplication. A related idea is to not just round but produce a range. Suppose I want the arithmetic progression 4, 7, 10, ... <20. If I had the right range n, then it would be 4+3×↕n, or (4+3×⊢)n. By using the inverse of this transformation function on the desired endpoint, I can make sure it's applied on the way out, and BQN figures out what to do on the way in as if by magic.

↗️
    ((4+3×⊢)) 20
⟨ 4 7 10 13 16 19 ⟩

Well, really it's some simple algebra, but if it wants to wear a pointy hat and wave a wand around I won't judge.

Left argument

When called dyadically, Under applies 𝔽 dyadically, like Over. This doesn't affect the undoing part of Under, which still tries to put the result of 𝔽 back into 𝕩 for structural Under or invert 𝔾 for computational. In fact, 𝕨 𝔽𝔾 𝕩 is equivalent to (𝔾𝕨)˙𝔽𝔾 𝕩 so no exciting language stuff is happening here at all.

But you can still do cool things with it! One pattern is simply to set 𝔽 to , the identity function that just returns its left argument. Now structural Under will replace everything that 𝔾 selects from 𝕩 with the corresponding values in 𝕨. Here's an example that replaces elements with indices 1 and 2.

↗️
    "abcd" (12) "0123"
"0bc3"

This method can replace deeper structure too. Below, 𝔾 is ¯1¨2↑⊢, selecting the last element of each of the first two elements of its argument. The elements that aren't selected don't have to match up.

↗️
    "ab", "cde", "fg" (¯1¨2↑⊢) ¨3211
⟨ ⟨ 0 1 'b' ⟩ ⟨ 0 'e' ⟩ ⟨ 0 ⟩ ⟨ 0 ⟩ ⟩

In fact, the elements that are selected don't really have to match up before being selected. So here's an example with Join where the same pattern is used to "re-flow" 𝕨 into the structure of 𝕩.

↗️
    "ab", "cde", "fg"  "---", "----"
⟨ "abc" "defg" ⟩

And getting it not to do that

The Over-based action on 𝕨 shows up more than you might think, but sometimes you just want to pass a left argument to 𝔽 without 𝔾 getting involved. In this case you have to bind it in: call 𝕨𝔽𝔾 𝕩.

↗️
    123+(1101/) 10203040
⟨ 11 22 30 43 ⟩

This gets bad when you want 𝕨 to be an argument. In the worst case you might need to write out an operator {𝕨𝔽𝔾𝕩}.