Inverse Parentheses

(kellett.im)

46 points | by mighty-fine 3 hours ago

19 comments

  • TrianguloY 2 hours ago
    Based on this comment (https://news.ycombinator.com/item?id=46352389), I think I understood the missing first paragraph:

    If you have the expression 1+2*3 you have three elements with two operands. You need to choose a rule to pick one of them first.

    In mathematics, the rule is "*/ then +-" and then from left to right. This means that usually first you do 2*3, then 1+.

    But what if you do want to make 1+2 first?

    There is another alternative, parenthesis. Those mean "do the thing inside first" so (1+2)*3 changes the precedence and now you do 1+2 first, then *3

    The post is asking: with parenthesis you can increase the precedence of operations. What if you could decrease it?

    Let's use «» as another operand (the blog uses parenthesis, but that makes it really confusing) this operand means "do the thing inside last". So the expression 1+«2*3» means "do 1+ first, then 2*3.

    The issue is...this doesn't make sense, what the blog is really saying is to reduce the precedence of operators. Think the expression 1+2«*»3 or 1+2(*)3 and now the rule is "the parenthesized operators have one precedence less" so 1+2(*)3=(1+2)*3

    • qsort 1 hour ago
      I don't think that's even well-defined if you have arbitrary infix operators with arbitrary precedence and arbitrary associativity (think Haskell). If $, & and @ are operators in that order of precedence, all right-associatve. Using your notation, what is:

        a & << b $ c >> @ d
      
      If $ is reduced below & but above @ then it's the same as:

        ((a & b) $ c) @ d
      
      If it's reduced below both & and @ then it becomes:

        (a & b) $ (c @ d)
      
      I think conceptualizing parentheses as "increase priority" is fundamentally not the correct abstraction, it's school brain in a way. They are a way to specify an arbitrary tree of expressions, and in that sense they're complete.
    • jeroen 56 minutes ago
      If we actually (as the title seems to imply) invert the parentheses, then for your example we get 1+2)*(3 .

      Now all you need are the opening and closing parentheses at the start and end, and we're back to normal.

      • swiftcoder 23 minutes ago
        Yeah, that seems a much more robust formulation of the whole thing. Flip all parens and enclose the whole string in more parens.
    • sebtron 1 hour ago
      This seems to be the best guess so far. But then I am wondering, how is

          a (*) b + c
      
      Parsed then? The precedence of '* is bumped down, but does that mean it has now strictly lower precedence of '+', or the same? In the first case the operation is parsed as

          a * (b + c)
      
      In the second case, the "left to right" rule takes over and we get

          (a * b) + c
      
      And what happens when there are more than 2 priority groups Taking C has an example, we have that '' has higher precedence than '+' which has higher precedence than '<<' [1]. So

          a + b * c << d
      
      Means

          (a + (b * c)) << d
      
      Now I could use the "decrease precedence" operator you proposed (possibly proposed by the author?) and write

          a + b (*) c << d
      
      Which then bumps down the precedence of '
      ' to... One level lower? Which means the same level of '+', or a level lower, i.e. a new precedence level between '+' and '<<'? Or maybe this operator should end up at the bottom of the precedence rank, i.e. lower than ','?

      The more I think about this, the less sense it makes...

      [1] https://en.cppreference.com/w/c/language/operator_precedence...

    • Smalltalker-80 1 hour ago
      Thanks indeed. Using a simple left-to-right evaluation is the most logical solution. You can reorder expressions to use less parentheses and make them easier to read. E.g.: Smalltalk :-). But this requires everyone un-learning their primary school maths of e.g. multiply-before-add, so it's not popular. Having hand-picked operator precedences complicates things further when you allow operator overloading and user defined operators. E.g. Swift has special keywords to specify precedence for these. Ick...
    • yccs27 1 hour ago
      Thanks, writing it as 1+2(*)3 made it click for me.

      Reminds me of the '$' operator in Haskell - it lowers the precedence of function application, basically being an opening parenthesis that's implicitly closed at the end of the line.

    • integricho 2 hours ago
      Thanks, this makes more sense, the blog post was written in a really confusing way.
  • qsort 2 hours ago
    Am I stupid if I don't get it? What is the intended end state? What does "ungroup operands" mean?
    • jojobas 2 hours ago
      I'm not sure I'm following but I think what he means is that if normal parenthesis around an addition mean this addition must precede multiplication, these anti-parenthesis around a multiplication have to make addition take place before it.
  • louthy 2 hours ago
    I'm all for terseness in blog writing, but I think the author forgot to add the content. I know nothing more than I did when I opened it.
  • bananaflag 2 hours ago
    > Have you ever noticed that lots of programming languages let you use parentheses to group operands, but none use them to ungroup them?

    Since this doesn't exist in practice, shouldn't the article author first explain what they mean by that?

    • Smaug123 2 hours ago
      The examples at the end show that it's syntax for "parse such that this expression is not grouped". Essentially I guess this could be modelled as an operator `(_+_)` for every existing operator `_+_`, which has its binding precedence negated.
  • carderne 2 hours ago
    I was hoping the parentheses themselves would be flipped. Like this:

    > 1 + )2 * 3(

    (1 + 2) * 3

    • AmbroseBierce 2 hours ago
      I think surrounding the operand would make slightly more sense, as in 1 + 2 (*) 3 as if it's a "delayed form" of the operation that it represents.
      • SyzygyRhythm 1 hour ago
        If you do both (use flipped parentheses around the operators), it makes even more sense, and makes the parsing trivial to boot: just surround the entire expression with parentheses and parse normally. For instance: 1 + 2 )( 3 Becomes (1 + 2 )( 3) Which is actually just what the author wants. You might even want multiple, or an arbitrary numbers of external parentheses. Say we want to give the divide the least precedence, the multiply the middle, and the add the most. We could do that like: 1 + 2 )/( 3 ))(( 4 Surround it with two sets of parens and you have: ((1 + 2 )/( 3 ))(( 4)) I haven't just proved to myself this always does what you expect, though...
    • dgoldstein0 2 hours ago
      Same.

      That said if you try to use that with ordinary parentheses usage it would get ambiguous as soon as you nest them

  • Philpax 2 hours ago
    Echoing the sentiment that I'm not really sure what I'm meant to be looking at here. A motivating example at the start would have helped, I think.
  • Lerc 31 minutes ago
    I think reading this let me experience the feeling a Bene Gesserit has when they hear about a preborn.
  • cousin_it 1 hour ago
    Is it the same as flipping every parenthesis to the other side of the number it's adjacent to, and then adding enough parentheses at the start and end?

    For example,

        (1 + 2) * (3 + 4)
    
    becomes

        1) + (2 * 3) + (4
    
    and then we add the missing parentheses and it becomes

        (1) + (2 * 3) + (4)
    
    which seems to achieve a similar goal and is pretty unambiguous.
  • wvbdmp 2 hours ago
    Regarding the first two footnotes, I’m pretty sure that originally the singular form “parenthesis” just refers to the aside inserted (by use of brackets, like this) into a sentence. Because it sounds like a plural and because of the expression “in parenthesis”, people probably mistakenly applied the word to the pair of symbols, and when that became common, started using the real plural “parentheses”. This has staying power because it’s fancy and “brackets” is way overloaded, but historically it’s probably just wrong and especially nonsensical in math and programming, where we don’t use them to insert little sidenotes.
  • Nevermark 1 hour ago
    I am in the middle of developing a parser for a new language with original representation vs. syntax issues to resolve.

    Clearly, this was the worst possible time for me to come across this brain damaging essay.

    I really can’t afford it! My mathematical heart can’t help taking symmetrical precedence control seriously. But my gut is experiencing an unpleasant form of vertigo.

  • HansP958 2 hours ago
    The concept of "inverse parentheses" that unbundle operators is brilliant! The tokenizer hack (friendliness score by parenthesis depth, inspired by Python INDENT/DEDENT) + precedence climbing for infinite levels is elegant – parsing solved without convoluted recursive grammar. kellett

    I love the twist: reversing the friendly levels gives you a classic parser, and it opens up crazy experiments like whitespace weakening. Have you tested it on non-arithmetic ops (logical/bitwise) or more complex expressions like ((()))?

    • istjohn 2 hours ago
      It's not just brilliant, it's earth-shattering.
    • codegladiator 39 minutes ago
      llm generated comment
  • ofalkaed 2 hours ago
    Parenthesis used to decrease precedence? Everything outside of the parenthesis will be done before what is in the parenthesis?
  • TeodorDyakov 2 hours ago
    Where do stars live? Thats what I wonder.
  • cubefox 2 hours ago
    Slightly unrelated:

    Instead of ordinary brackets, one can also use the dot notation. I think it was used in Principia Mathematica or slightly later:

      (A (B (C D)))
    
    would be

      A . B : C .: D
    
    Essentially, the more dots you add, the stronger the grouping operator is binding. The precedence increases with the number of dots.

    However, this is only a replacement for ordinary parentheses, not for these "reverse" ones discussed here. Maybe for reverse, one could use groups of little circles instead of dots: °, °°, °°°, etc.

    • agumonkey 1 hour ago
      could this be the origin of lisp and ML family list notation ?
  • Juliate 33 minutes ago
    Ha! I was expecting/wondering something about the semantics of )( parenthesis (which I have no idea what it could be, but... why not?)
  • tromp 2 hours ago
    Using Brave on MacOS, I cannot scroll the page to see the entire text. On Firefox, it scrolls fine.
    • guessmyname 2 hours ago
      Same in Safari. It has something to do with the

        :root {
          […]
          overflow: hidden scroll;
          container-type: size;
          […]
        }
      
      in the main CSS file: https://kellett.im/theme/main.css
    • auggierose 2 hours ago
      Cannot scroll on Safari on macOS, either. What also doesn't work is making the font smaller / larger.
    • TerraHertz 2 hours ago
      Splendid. Someone found a way to break Browser Scrolling. (Firefox 115.16 for Win7)

      Well done.

  • pxeger1 2 hours ago
    I don't understand
  • randyrand 1 hour ago
    The core idea: normally, parentheses strengthen grouping:

    1 + (2 * 3) forces 2 * 3 to happen first.

    Without them, operator precedence decides. The post asks a deliberately strange question:

    What if parentheses did the opposite — instead of grouping things tighter, they made them bind less tightly?

  • ChanderG 2 hours ago
    Opened this excitedly, thinking I was going to get something related to S-expressions/Lisp, was disappointed...