In how many ways can four people sit around a circular table? Seating arrangements are considered different only if at least one person has at least one different neighbor.
lets say you want to sit x people around a table you would do x!. but since it doesn't count if you rotate the table you have to divide it by x, so the answer is x!/x = (x-1)!