How many different possible ways can persons be seated in a round table?

Kiran picture Kiran · Sep 2, 2011 · Viewed 12.3k times · Source

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

Answer

JoeBuddha picture JoeBuddha · Sep 2, 2011

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)