You can edit almost every page by Creating an account and confirming your email.

Power Couples (Social Networks Analysis)

From EverybodyWiki Bios & Wiki


In the 20th chapter of his book "Analyzing Narratives in Social Networks: Taking Turing to the Arts"[1], prof. Zvi Lotker describes one of two methods of rising to power and accumulating social influence. One of them he coins as a power couple, formally defined as "two people who are married to each other, or in a relationship with each other, and both have extremely successful careers, especially in politics or entertainment".[2] In his book, prof. Zvi Lotker defines couples through the use of social graphs, specifically a tournament tree in which each node must select another node on the graph. A power couple is a couple who also holds significant centrality in the graph (chapter 20).[3]


Definition

Power couples are defined as two nodes in a tournament social graph that both hold high centrality and choose each other in this tournament graph.

Finding couples

The process of determining couples has two steps. First, each node must select its candidate. Second, we must find a pair in which both nodes select one another. Couples are determined over the graph of selection. The following code finds a couple in a tournament graph:

C <- {}
for {(u,v)} in E do:
    if (v, u) ∈ E and (v,u) ∈/ C then
    C ← C ∪ (v,u) 
    end if
end for
return C
end procedure

Algorithms

General algorithm

The following general algorithm for finding power couples is as follows: first, we ask each of the nodes to rank the other nodes in the graph. We'll summarize the preferences of each node in a decision matrix. This decision matrix is denoted by ΨSMn,n[R], also named the Stanislavski matrix.

Once the Stanislavski matrix is obtained, the tournament forest can be made. To this, each proposes its preferred matching according to the decision matrix ΨS (see chapter 5 algorithm 3 in the book for further inspection[4]).

Finding power couples using a space approach

The decision matrix ΨS can be computed by selecting anchors, and using a conflict function to split the rest of the nodes into parties. This method is suitable for small networks, but for larger networks, the number of pairs that need to be considered must be reduced.

All to all decision matrix is defined by:

Ψi,jS=|{uV:vi(Ξ(Pm|{(u,vj)},G))(vj)1}|

Where Ψi,jS is the number of times that the node vi is in the partition of the anchor vj.

After the decision matrix ΨS was obtained, the next step is to construct a tournament forest, using the following algorithm:Template:Algorithm-begin 1: procedure FindingTournamentForest(V,[ΨSi,j], >, direction)]) *

2: E ← {}

3: Ψ' ← [ΨSi,j]

4: for vi ∈ V do

5: ψ'i,i = − > ∗. // − > ∗ is the worst alternative option for node vi

6: u ← Optimal Option ((ψi,1, ..., ψi,n) , >, direction) **

7: E ← E ∪ {(vi, u)}

8: end for

9: return T (V, E) ***

10: end procedure

* Where V is the set of all nodes, [ψSi,j] is a decision matrix, i, j ∈ {1, 2, ..., n}, > is the total order, and direction is the set of the optimal direction.
** See algorithm 3 in: Lotker, Zvi (28 August 2021). Analyzing Narratives in Social Networks: Taking Turing to the Arts. Springer Cham. p. 83. ISBN 978-3-030-68299-6. Search this book on 

(chapter 5.4 of the book- Utility Anchors)

*** Return the list of couples.Template:Algorithm-endAfter calculating the tournament forest with the algorithm above, the power-couple finding algorithm could be used on the result.

Finding power couples using Dynamics

Similarly to the space-approach algorithm, this algorithm relies on individuals in the network to choose the best candidates themselves. The process is represented using a decision forest.

This method is more specific, utilizing real functions' correlations, instead of the general method of using conflict functions (in the space approach).

Idea

The idea here is to use a real function Fi for all of the characters viV in the evolving γ graph. Then, compute the correlation matrix ρ between all of the functions:

ρ=[ρ(Fi,Fj)]

Where ρ is the correlation. Now, in order to compute Ψs using γ:

Ψs=[(ψi,j)cor]=[ρ(dvi,dvj)]

Where dvi is the degree function for every character viV:

dvi:TG

And finally, after using the FindingTournamentForest algorithm on Ψs, the finding couples algorithm could be used to find couples.

Examples from the book

Example of the Space Approach to compute the decision matrix

Zvi shows an example of a simplified script- where characters A, B, and C have a conversation.

Sc=((A,r1),(B,r2),(A,r3),(B,r4),(A,r5)(C,r6),(B,r7),(C,r8)).

The 3 possible anchors are as such:

𝒜1=(1,2),𝒜2=(1,3),𝒜3=(1,3).

Now, using the voting algorithm (as discussed in chapter 7[5]) gives us these decision matrices:

Ψ1,2Voting=[10012313],Ψ1,3Voting=[10341401],Ψ2,3Voting=[35251001]

And the Voronoi decision matrices (explained further in chapter 6[5]) are as follows:

Ψ1,2Voronoi=[1131301256],Ψ1,3Voronoi=[0121356120],Ψ2,3Voronoi=[1312056560]

The next step is computing the partition for each conflict, which gives the following results:

𝒜Ξ(Pm|{(u,vj)},G))(vj)1{1,2}{{1,3},{2}}{1,3}{{1,2},{3}}{2,3}{{1,2},{3}}

By counting the number of appearances of each node in the respective anchors’ partitions, we can form the decision matrix:

ΨS=[210120102]

References

  1. Lotker, Zvi (28 August 2021). "Analyzing Narratives in Social Networks: Taking Turing to the Arts". Springer. Unknown parameter |url-status= ignored (help)
  2. "power couple". Cambridge Dictionary. Unknown parameter |url-status= ignored (help)
  3. Lotker, Zvi (2021). Analyzing Narratives in Social Networks: Taking Turing to the Arts (1st ed.). Springer Cham. pp. 315–332. ISBN 978-3-030-68299-6. Search this book on
  4. Lotker, Zvi (2021). Analyzing Narratives in Social Networks: Taking Turing to the Arts (1st ed.). Springer Cham. p. 83. ISBN 978-3-030-68299-6. Search this book on
  5. 5.0 5.1 Lotker, Zvi (2021). Analyzing Narratives in Social Networks: Taking Turing to the Arts (1st ed.). Springer Cham. pp. 117–137. ISBN 978-3-030-68299-6. Search this book on



This article "Power Couples (Social Networks Analysis)" is from Wikipedia. The list of its authors can be seen in its historical and/or the page Edithistory:Power Couples (Social Networks Analysis). Articles copied from Draft Namespace on Wikipedia could be seen on the Draft Namespace of Wikipedia and not main one.