How to express a permutation (without repetition) of a Set $A$?
I'd like to create a set $P$ of tuples while equal tuples should only occur once in the set $P$. Tuples are equal when e.g. $\{a, b\} = \{b, a\}$. Tuples of the same values should not be included, e.g. $\{a, a\}$.
Example: Given $A = \{a, b, c\}$, I would like to receive $P = \{\{a, b\}, \{a, c\}, \{b, c\}\}$.
How can I write this in an equation?