IBM Research

PUZZLE   IBM-288

Minimizing a sum for two orthogonal vectors

IBM Research · Ponder This · 2022-04

IBM Ponder This #288 · April 2022

Minimizing a sum for two orthogonal vectors

This month’s puzzle is based on a suggestion by Marco Bellocchi. Thanks, Marco!
Let x,yRn be two vectors, and define the function f(x,y)=i=1nj=1n(|xixj||yiyj|)2 We wish to minimize f, subject to the following constraints on x,y: The vectors need to be orthogonal to each other and to the vector (1,1,,1) and of norm 1, i.e.,

  1. i=1nxi2=i=1nyi2=1
  2. i=1nxi=i=1nyi=0
  3. i=1nxiyi=0 The lower bound for f appears to be 4, but we know of no proof for general n. Nevertheless, we refer to a pair x,y giving f(x,y)=4 as being an "optimal solution". For example, suppose n=5 and x = [-0.3562014 , 0.63245526, -0.3688259 , -0.36163773, 0.45420977] y = [-0.03997346, -0.6324558 , -0.05259805, -0.04540969, 0.77043701] Then x,y are very close to being an optimal solution, up to a small error of at most 0.0000001 Your goal For n=20, find a pair of x,y that are 0.0000001-close to being an optimal solution. Give your solution in the exact format given above. A bonus "*" will be given for finding an **exact** solution (f(x,y)=4) where x,y are both rational vectors (x,yQn), for some n at least 5. Give your solution in a format similar to that above, but with numbers written as "a/b", e.g., x = [1/2, 1/3, 1/6] A bonus "**" will be given for finding an exact rational solution for any n40, or for proving 4 is indeed the minimum value of f. (We do not know of such a solution or such a proof.)

Solution

Best opened after a real attempt

To be added.