CD(i)=J∑j=1AijCD(i)=J∑j=1Aij(6.1)
How to Read Equations for Matrix Operations
Depending on your background in math, you may or may not already know how to interpret Equation (???)(eq:degcenteq). Essentially, the number at the bottom of the sigma is where to start. The number at the top of the Sigma symbol (ΣΣ) is where to end. The equation to the left is the operation to be performed. Thus, one reads the Equation (???)(eq:degcenteq) as, starting at column j=1j=1, and ending at the last possible column JJ (remember that JJ is simply the total number of columns in the matrix), add up all possible values of the cells designated by the row ii and column jj combination in matrix A. Thus, to calculate the degree centrality of each i=a,b,ci=a,b,c in the below matrix, each of the following calculations would be performed.
a | b | c | |
---|---|---|---|
a | - | 1 | 0 |
b | 1 | - | 1 |
c | 0 | 1 | - |
CD(a)=aa+ab+ac=1CD(a)=aa+ab+ac=1
CD(b)=ba+bb+bc=2CD(b)=ba+bb+bc=2
CD(c)=ca+cb+cb=1CD(c)=ca+cb+cb=1
In the same way if we had the formula:
CD(i)=I∑i=1AijCD(i)=I∑i=1Aij
Then it would be telling us to sum values of each column jj down each row ii:
CD(a)=aa+ba+ca=1CD(a)=aa+ba+ca=1
CD(b)=ab+bb+cb=2CD(b)=ab+bb+cb=2
CD(c)=ac+bc+cc=1CD(c)=ac+bc+cc=1
The sigma notation is useful for summarizing this repetitive process in a simple, condensed form.