Zulip Chat Archive
Stream: new members
Topic: Permutation over a finite set
Maxime Darrin (Jul 04 2021 at 16:28):
Hi, how can we define a permutation over a finite set:
I would like to define a permutation over a set of indices
v : {0,1,2} -> {0,1,2}
a permutation
I found finmap but I could not manage to use it properly
Eric Wieser (Jul 04 2021 at 16:30):
Are you looking for equiv.perm (fin 3)
?
Eric Wieser (Jul 04 2021 at 16:31):
Which is the type of permutations of the integers 0, 1, and 2
Maxime Darrin (Jul 04 2021 at 16:31):
Yeah it seems to be what I need thanks!
Last updated: Dec 20 2023 at 11:08 UTC