I am developing an algorithm and am looking at a possibility of the maximum number of iterations before arriving at a conclusion.
In real world, it is similar to the Classical Round Table seating problem. Can you please tell me the maximum number of ways n persons be seated in a round table without repetitions ?
Thanks
Classic permutation problem: Break it into two sections: 1) All possible combinations 2) Divide by n as the number of starting locations (since they don't matter)
I get (n-1)! possibilities. Am I missing anything here? (I don't do stats much, so I'm kinda rusty)