The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
45 views

Reverse Polish Notation and numbers $>9$

Excuse me for the newbish question in advance but how should I make sure I don't make a mistake converting from RPN to infix notation when I don't know if some of the numbers aren't two-digit ones or ...
0
votes
2answers
210 views

distributive law in polish notation

On page 18 "Logic as Algebra" Halmos&Givant wrote the distributive law in Polish notation as $$ = \times a + bc + \times ab \times ac $$ I fail to see anything remarkable here, is there a ...
1
vote
1answer
112 views

PEDMAS in RPN needed?

In RPN do we still have to take into note the PEDMAS rules? For example these questions: 3 – 4 * 2 3 * 4 – 2 3 * (4 – 2) (3 – 4) * 2 3 – 4 + 2 Answers 342*- ...
1
vote
2answers
212 views

Calculate an Average in RPN (Reverse Polish Notation)

To calculate an average in reverse polish notation (RPN) is the following correct (assuming a-j are variables representing numbers): ...
0
votes
1answer
190 views

Is it possible to omit multiplication operator in polish/prefix notation?

In infix notation, (2/2(3+3)) means (2/(2*(3+3)). The multiplication sign is omitted. In polish/prefix notation, is it possible to omit multiplication sign? For instance, is it acceptable to write ( ...
2
votes
3answers
231 views

Practicing Polish/Prefix notation

...