theorem Th14:
  1 <= k & k+1 <= len f implies Int left_cell(f,k) <> {}
proof
  assume that
A1: 1 <= k and
A2: k+1 <= len f;
  ex i,j st i <= len GoB f & j <=
  width GoB f & cell(GoB f,i,j) = left_cell(f,k) by A1,A2,Th10;
  hence thesis by Th13;
end;
