Problem 51820. Count unique orderings of vertices of a polygon
Cody Problem 2671 asks us to determine whether four points can be the corners of a rectangle. The points are not necessarily input in order (either clockwise or counterclockwise). My initial attempt at the problem involved determining how the points might be presented. If the corners are numbered as shown below, then they can be input in 24 ways.
However, for the rectangle problem, many of the 24 ways are essentially the same. For example, 2341, 3214, and 4123 are effectively the same as 1234 because the numbers of the corners could be shifted around the rectangle. In fact, only three of the 24 ways are different (1234, 1243, and 1324).
Write a function to determine the unique orderings of vertices of a polygon with n sides.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers18
Suggested Problems
-
8950 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
381 Solvers
-
132 Solvers
-
231 Solvers
-
Given a square and a circle, please decide whether the square covers more area.
1173 Solvers
More from this Author286
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!