I dunno (piefed.cdn.blahaj.zone)
 
you are viewing a single comment's thread
view the rest of the comments
[–] 23 points 9 months ago* (1 child)

RPN or Reverse Polish Notation is a notation for calculators to be less ambiguous. The last numbers use the operator to their right, repeat. So no need for parenthesis or PEMDAS.

  • 2 5 8 5 - × +
  • (8 - 5 = 3)
  • 2 5 3 × +
  • (5 × 3 = 15)
  • 15 2 +
  • (15 + 2 = 17)
  • 17
  • source
  • parent
  • hideshow 2 child comments