1

I'm looking to express an operation on collections of elements from a set. In programming, this would more or less be a variadic function. Is there an equivalent in mathematics?

1 Answers1

0

(Continuing from comments)

Let $A=\{1,2,3,4\}$. Then:

  • $A^0=\{\emptyset\}$ (this definition is somewhat nonstandard, but helps for your application)

  • $A^1=\{1,2,3,4\}$.

  • $A^2=\{(1,1),(1,2),(1,3),(1,4),(2,1),(2,2),(2,3),(2,4),(3,1),(3,2),(3,3),(3,4),(4,1),(4,2),(4,3),(4,4)\}$.

The sets continue, but get larger and I don't want to write them.

Each element of $\bigcup_{i=0}^\infty A^i$ is an ordered list of elements (throw all the elements of all the different lengths together into a single collection). You don't need a "stop" because the length is part of the element.

Michael Burr
  • 32,867