I've been reading about Combinations, Variations and Permutations, all with and without repetitions. None of those seems to be what i'm looking for.
Given a set of 3 elements $(A, B, C)$, there are 6 possible Variations:
$1.\ (A,B,C)\\ 2.\ (A,C,B)\\ 3.\ (B,A,C)\\ 4.\ (B,C,A)\\ 5.\ (C,A,B)\\ 6.\ (C,B,A)$
I'm looking for all possible sequences without repetitions so $(A,B,C)$, $(B,C,A)$ and $(C,A,B)$ are all the same to me and i would simply write any (but only one) of them. The same happens with the other three, leading to only 2 possible sequences solutions: $(A,B,C)$ and $(A,C,B)$.
By a simple understanding, i know that the number of sequences without repetitions in a set of $n$ grouping by $r$ are: $\frac{1}{r} \cdot \frac{n!}{(n-r)!}$ because it's the number of Variations divided by the number of elements i'm grouping by.
EDIT: I found someone explaining this as "oriented cycles" here and also i've seen something similar defined as "cyclic permutations" on wikipedia.
Does this operation/function have a name?
group-theoryandgraph-theoryare both out of place. – Arturo Magidin Apr 28 '24 at 23:56