Is there a proper way to distinguish base from index variable?
For this instance, let's say we have a paper that deals with cryptographic keys both in different bases and with different indices.
For different bases we might say that our binary function outputs a binary key and our ternary function outputs a ternary key: $$f_2(x) = K_2$$ $$f_3(x) = K_3$$
For indices we might later describe a process in which we have sub-functions that generate sub-keys (think hash family): $$f_1(x) = K_1$$ $$f_2(x) = K_2$$ $$f_3(x) = K_3$$
Some things I've considered:
- Specifying in english that the subscript is either base or index ($i$).
- Prefixing base with 'b': $K_{b3}$.
- Prefixing the index with 'i': $K_{i3}$
- Using lowercase for keys with indices and uppercase for keys with base. I don't like this because it leads a reader to mistakenly infer that a based key can be described in some form of sub-keys.
My favorite of the options I listed is 1.