Infix notation writes operators between operands, like A + B. Postfix writes operators after operands, like AB+. Prefix writes operators before operands, like +AB. To convert infix to postfix:
1. Scan the infix expression left to right for tokens
2. Append operands to the postfix string
3. Push operators and parentheses to the stack according to precedence rules
4. Pop operators from the stack and append to postfix when encountering closing parentheses
5. Pop all remaining operators from the stack and append to postfix when finished.