1. Divide the sequences: Given the sequences {ai}1≤i≤n and {bi}1≤i≤n, we can divide them into two subsets each with equal sums. Specifically, we divide {ai} into {xi}1≤i≤k and {yi}1≤i≤n−k such that:
i=1∑kxi=i=1∑n−kyi
Similarly, we divide {bi} into {zi}1≤i≤l and {wi}1≤i≤n−l such that:
i=1∑lzi=i=1∑n−lwi
2. Order the subsets: Arrange the elements in each subset in non-increasing or non-decreasing order:
x1≥x2≥⋯≥xk,y1≤y2≤⋯≤yn−k
z1≥z2≥⋯≥zl,w1≤w2≤⋯≤wn−l
3. Define cumulative sums: Define the cumulative sums for each subset:
Xj=i=1∑jxi,Yj=i=1∑jyi
Zj=i=1∑jzi,Wj=i=1∑jwi
4. Construct the polygon: Construct a 2n-polygon P1P2…P2n with vertices defined as follows:
P2i−1=(Xi,Wi−1),P2i=(Xi,Wi)for 1≤i≤k
P2i−1=(Yn−i,Wi−1),P2i=(Yn−i,Wi)for k+1≤i≤n−l
P2i−1=(Yn−i,Zn−i+1),P2i=(Yn−i,Zn−i)for n−l+1≤i≤n
5. Prove the polygon is simple: To show that the polygon P1P2…P2n is simple (i.e., it does not intersect itself), we need to verify the following conditions:
X1W1≤X2W2≤⋯≤XkWk≤YlZl≤Yl−1Zl−1≤⋯≤Y1Z1
Xk−1Wk−1<Yl−1Zl−1
6. Verify condition (1): The first condition is straightforward to verify given the ordering of the subsets and the properties of the cumulative sums.
7. Verify condition (2): Suppose the second condition is false. By calculation, this would imply that all ai's are equal and all bi's are equal, which contradicts the given condition that a1,a2,…,an are not all equal.
Thus, the conditions are satisfied, and the constructed polygon is simple.
■