Mental Model
Use a stack to keep numbers until an operator comes, then combine the last two numbers using that operator and push the result back.
Analogy: Imagine stacking plates with numbers. When you get an operator, you take the top two plates, do the math, and put one new plate back on top.
Stack (top at right): [] Expression: 2 3 + 4 * Initial stack empty, ready to push numbers.
