by Guest » Sun Jun 23, 2013 5:22 am
My apologies, when I talk about the convex hull I really mean the points on the boundary of the convex hull (also when I said rotate by 180 degrees I meant to say about the origin).
Given [tex]x_k[/tex] and [tex]x_l[/tex] we can fully define [tex]f[/tex] by simply taking [tex]f(x_k)=1[/tex] and [tex]f(x_k-x_l)=0[/tex] (assuming we are not in the degenerate case that all vectors lie on a straight line going through the origin). The problem is to find an appropriate [tex]x_k[/tex] and [tex]x_l[/tex] that will satisfy all the conditions.
For example take [tex]n=4[/tex] and the [tex]x_1,x_2,x_3,x_4[/tex] vectors to be the points (0.1,0.1), (1,0), (-0.5, 0.866), (-0.5, -0.866) respectively. They form (roughly) an equilateral triangle and a point inside it.
We can not use (0.1,0.1) as [tex]x_k[/tex] or [tex]x_l[/tex] as the line going through [tex]x_k[/tex] and [tex]x_l[/tex] will split the plane into two regions each containing a point. The region containing the origin will all have values which [tex]f[/tex] maps to something smaller than [tex]f(x_k)[/tex] and the region not containing the origin will contain points that get mapped to something larger than [tex]f(x_k)[/tex].
In fact (0.1, 0.1) will play no part in determining whether a linear map [tex]f[/tex] is possible. If there is such a linear map, since (0.1, 0.1) lies in the convex hull of the other three points it will automatically be dealt with. The convex hull of the three points is the equilateral triangle (by the way).
If we didn't have the condition that [tex]f(x_k)=\max\{|f(x_i)|\}[/tex] then any two choices of [tex]x_2, x_3, x_4[/tex] for [tex]x_k, x_l[/tex] would work. However since we do have that condition we need to consider the points [tex]-x_2, -x_3,-x_4[/tex] which we do by rotating the points by 180 degrees about the origin. Now we have 6 points whose convex hull is a (roughly) regular hexagon. The points on the boundary of the convex hull in anticlockwise order are [tex]x_1, -x_3, x_2, -x_1, x_3, -x_2[/tex] note that they alternate between our original points and the rotated/negative points. We can not find two consecutive points on the boundary of the convex hull which are not rotated, as such any choice of [tex]x_k, x_l[/tex] will split the region into two parts, as before, with some points getting a value greater than [tex]f(x_k)[/tex] and some points getting a smaller value. There is no such linear map [tex]f[/tex].
If we shifted everything to the left by translating all the points by (-1,0) then repeated the procedure we would find the convex hull of the points and the rotated points is now a rectangle, and [tex]x_2, x_3[/tex] are consecutive points on the boundary, so we can use them as [tex]x_k, x_l[/tex] to create [tex]f[/tex].
Although this convex hull idea works it is not a very simple characterization, and I can't see a simpler one. I seriously doubt this is the answer the exercise was looking for.
R. Baber.