[] is used in most programming languages to define a variable as an array. In a mathematical formula, is it fine to indicate the symbol I am using is an array, if yes how can I achieve it?
For that reason, could I use [] next to a symbol definition or should I use symbols without using any []?
For example:
$N$: Data files used by job $j$: $N = \{n_{1},n_{2},\dotsc,n_{\lvert N\rvert}\}$
$A^{}_{{\!N}}[\,]$ : Array of required run time to store data files in $N$.
I refer to
$A^{}_{{\!N}} = \{a^{}_{{1}},a^{}_{{2}},\dotsc,a^{}_{{\lvert N\rvert}}\}$ as $A[]$.
$C(A_N[]) = \sum_{n \in N}{A_n}$
A[]is an array, but its each item refers to a different object. Like $A_1$ is data-1’s value, $A_2$ is data-2’s value and so on. Its indices are0,1,2,3 …N. – alper Oct 15 '22 at 12:47A_{n_{1}}is (data_1’s value),A_{n_{2}}is (data_2’s value) … But I am not sure how should I refer it inside the sum notation as : $\sum_{n \in N}{a_n}$ or $\sum_{n \in N}{A_n}$. – alper Oct 15 '22 at 13:31[]because you want it to be read by humans and presumably not by a compiler. – Kurt G. Oct 15 '22 at 15:17