Given a weighted graph $G = (V,E)$, the in-degree of a node is defined as $ k_{in}(i) = \sum_{j:j \rightarrow i} A_{ji} $ where $A_{ji}$ is the weight of edge from node $j$ to $i$. My question is if there are $m$ nodes pointing to $i$, what's the terminology for $m$? Is it the number of in-links?
Remember to vote up questions/answers you find interesting or helpful (requires 15 reputation points)
|
2
|
|
|
|
|
4
|
The quantity you are asking about is usually called the "fan-in" of node $i$. The dual quantity which counts the number of nodes to which $i$ points is called the "fan-out". The terms are standard at least in the circuit design and computer science literature, but I can't seem to find them in graph theory texts at the moment. Searching google for something like directed graph "fan in" will reveal many papers that use the term. |
|||
|
You can accept an answer to one of your own questions by clicking the check mark next to it. This awards 15 reputation points to the person who answered and 2 reputation points to you.
|
1
|
I've seen papers where $m$ is called the in-degree and $k_{in}$ is called something else (such as weighted in-degree). Using in-degree and fan-in as Vel Nias suggests would be fine too. But you need to define it as there isn't universal agreement on how to interpret these names in the weighted graph context. |
|||
|

