Can someone kindly tell me the meaning of the following notation:
A book defined the following matrix $(a_{ij})_{3\times 3}$ :
$a_{ij}=\begin{cases} d_{ij}& i\neq j\\d_{ii}+\sum_{j=1}^3 d_{ij}&i=j\end{cases}$
where $d_{ij}$ are elements defined for $1\le i,j\le 3$.
I dont understand the case for $i=j$
Does it mean $d_{11}=d_{11}+d_{12}+d_{13}$?
I agree with Theo Bendit's comment re: the reuse of a variable in the summation, as it tends to confuse people. Thus, I will rephrase it to give that, for $i = j$, the notation means $a_{ii} = d_{ii} + \sum_{k=1}^3 d_{ik} = d_{ii} + d_{i1} + d_{i2} + d_{i3}$. Thus, for example, $a_{11} = d_{11} + d_{11} + d_{12} + d_{13} = 2d_{11} + d_{12} + d_{13}$.