SlideShare une entreprise Scribd logo
1  sur  18
Télécharger pour lire hors ligne
Electronic Supplementary Material for:

Analytical reasoning task reveals limits of social learning in networks
Iyad Rahwan, Dmytro Krasnoshtan, Azim Shari↵, Jean-Fran¸ois Bonnefon
c

A
A.1

Experimental Interface
Tutorial Screenshots

1
2
3
4
5
A.2

Quiz Questions

Following is the set of quiz questions that participants have to correctly answer before they can proceed to
the experiment. The correct answers are highlighted in bold.
How many times will you see each question?
1. Only once
2. 5 times
Does your reward depends on the responses of other players?
1. Yes
2. No
How do you make money in this game?
1. Every correct response gets me money
2. Not every correct response gets me money, only the last trial counts for each question
3. Not every correct response gets me money, multiple correct responses to the same question only count
as one

6
B

Questions

Below is the list of all questions. The first three questions corresponded to the Cognitive Reflection Test
(CRT). These three questions generate an incorrect intuitive answer, which must be inhibited in order to
produce the correct analytic answer [1].
1. [CRT1] In a lake, there is a patch of lily pads. Every day, the patch doubles in size. If it takes 48 days
for the patch to cover the entire lake, how long would it take for the patch to cover half of the lake?
(Answer: 47)
2. [CRT2] If it takes 5 machines 5 minutes to make 5 widgets, how long would it take 100 machines to
make 100 widgets? Write the answer in minutes.
(Answer: 5)
3. [CRT3] A bat and a ball cost $1.10 in total. The bat costs $1.00 more than the ball. How much does
the ball cost?
(Answer: 0.05)
After the three CRT questions, subjects moved on to another series of four questions from the Berlin
Numeracy Test (BNT), which we do not discuss in this article [2]. Being either too easy or too hard, these
questions produced little variance between participants in our networks, and thus did not allow us to test
our hypotheses (see Figure 1 below for a visualization of the responses in the BNT questions). As these
question came after participants had completed the three CRT questions, there is no concern that they could
have contaminated the CRT data that we analyze in this article.
1. [BNT1] Imagine we are throwing a five-sided die 50 times. On average, out of these 50 throws how
many times would this five-sided die show an odd number (1, 3 or 5)?
out of 50 throws.
(Answer: 30)
2. [BNT2] Out of 1,000 people in a small town 500 are members of a choir. Out of these 500 members
in the choir 100 are men. Out of the 500 inhabitants that are not in the choir 300 are men. What is
the probability that a randomly drawn man (not a person) is a member of the choir? (please indicate
the probability in percents)
(Answer: 25)
3. [BNT3] Imagine we are throwing a loaded die (6 sides). The probability that the die shows a 6 is
twice as high as the probability of each of the other numbers. On average, out of these 70 throws, how
many times would the die show the number 6?
out of 70 throws.
(Answer: 20)
4. [BNT4] In a forest 20% of mushrooms are red, 50% brown and 30% white. A red mushroom is
poisonous with a probability of 20%. A mushroom that is not red is poisonous with a probability of
5%. What is the probability that a poisonous mushroom in the forest is red?
(Answer: 50)

7
Proportion of correct responses

TOPOLOGY

Full

First Question

Erdos−Renyi

Barabasi−Albert

Second Question

Clustered

Third Question

Baseline

Fourth Qestion

1.00
0.75
0.50
0.25
0.00
1

2

3

4

5

1

2

3

4

5

1

2

3

4

5

1

2

3

4

5

Trial

Figure 1: BNT questions are either too easy or too hard, reducing variance observed in CRT questions.

8
C
C.1

Network Structures & Their Properties
The Networks

A network (or graph) consists of a set V vertices (a.k.a. nodes, individuals), and a set E of edges (a.k.a.
connections or links) between them. Elements of E can be denoted by a pair Eij = (i, j) where i, j 2 V .
Each of our experimental sessions ran on one of the four graphs: (1) Barabasi-Albert model; (2) Clustering
graph; (3) Erdos-Renyi model; (4) Full graph. The di↵erent graph structures are visually depicted below.
These graphs were chosen due to significant discrepancy in their measures on the macro (network) and micro
(node) level, as shown below.

Barabasi−Albert model

Clustering graph

Full graph

Erdos−Renyi model

Figure 2: List of graphs

9
C.2

Micro Measures

And on the micro level (for each node):
Degree: The degree ki of a vertex i is simply the number of edges incident to this vertex. In a directed
graph, we can distinguish between the out-degree (outgoing edges) and in-degree (incoming edges). In the
present paper, edges are considered undirected.
The di↵erent graph structures we used have significantly varying distributions of node degrees, as shown
below. The degree distribution of the Erdo-Renyi graph follows a Poission distribution, thus most nodes
have a more or less equal number of neighbors (no one is disproportionately popular). In contrasted, in the
Barabasi-Albert graph, the distribution is long-tailed, with a few very highly connected nodes. In the full
graph, everyone has equal degree, since everyone is connected to everyone else. Finally, in the clustering
graph, degrees are more or less identical. However, as we will see below, some nodes are a more privilaged
position in the middle of the graph.

Barabasi model

Erdos−Renyi model

20

20

15

15

10

10

5

5

0

0

5

10

15

0

20

0

Full graph

5

10

15

20

Clustering graph

20

20

15

15

10

10

5

5

0

0

5

10

15

0

20

0

5

10

15

20

Figure 3: Degree distribution
Local clustering coe cient: The local clustering coe cient captures the following intuition: out of all
pairs of friends that i is connected to, how many of those friends are also friends with one another. In other
words:
Ci =

number of triangles connected to node i
number of triples centered around node i

where a triple centred around node i is a set of two edges connected to node i (if the degree of node i is 0
or 1, we which gives us Ci = 0/0, we can set Ci = 0). High local clustering coe cient for node i indicates
that i belongs to a tightly knit group.
More formally, the local clustering coe cient ci is defined as follows:
Ci =

|{Ejk }|
: vj , vk 2 Ni , Ejk 2 E
ki (ki 1)

where ki is the out-degree of vertex i, and Ni = {vj : Eij 2 E} is the set of out-neighbours of vertex i. For
10
undirected graphs the value of Ci is normalized as Ci0 = 2Ci . If to rephrase this in the simple words, the
local clustering coe cient of a vertex in a graph shows how close its neighbors are to being a full graph.
The figure below highlights how the distribution of local clustering coe cients varies significantly across
the di↵erent network structures. In particular, nodes in the Erdos-Renyi and Barabasi-Albert graphs have
much lower clustering compared to the Clustering graph. Note that in the full graph, every node has a local
clustering coe cient of 1, since everyone is connected to everyone else.
Betweenness centrality: The betweenness centrality of a node is equal to the number of shortest
paths (among all other vertices) that pass through that node. The higher the number, the more important
is the node, in the sense that there is a small number of hops between that node and the majority of the
network. Mathematically it can be defined as
g(v) =

X

s6=v6=t

st (v)
st

where st is the total number of shortest paths from node s to node t and st (v) is the number of those
paths that pass through v.
The figure below shows that the betweenness centrality of nodes in the Clustering graph vary significantly
(contrast this with the fact that the node degrees in this graph are almost identical to one another).

Clustering coefficient
1
0.5
0
Barabasi model Erdos−Renyi model

Full graph

Clustering graph

Betweenness centrality
60
40
20
0
−20

Barabasi model Erdos−Renyi model

Full graph

Clustering graph

Figure 4: Clustering coe cient, betweenness centrality

C.3

Macro Measures

2|E|
Graph density: In graph theory, graph density is defined as |V |(|V | 1) . Density represents the ratio of
the number of edges to the maximum number of possible edges. Density will therefore have a value in the
interval [0, 1].
Clustering coe cient of a graph: The clustering coe cient of an undirected graph is a measure of the
number of triangles in a graph. The clustering coe cient for the whole graph is the average of the local
clustering coe cients Ci :
n
1X
C=
Ci
n
i=1

11
where n is the number of nodes in the network. By definition 0  Ci  1 and 0  C  1.
Diameter: Diameter of the graph is the lenght of the longest shortest path between any two vertices of the
graph.
Macro level parameters for the four classes of networks are summarized in the table below. Note how
the density and diameter of all graphs is almost identical, with the exception of the full graph, which has
maximum density.
graph type
Barabassi
Erdos-Renyi
Full graph
Clustering graph

Density
0.195
0.211
1
0.179

Clustering
0.208
0.158
1
0.714

12

Diameter
4
4
1
5

Number of edges
37
40
190
34
D

Evolution of Network States

The figures below show samples of the detailed evolution of correct (blue) and incorrect answers (red) in a
selection of network/question combinations.

Figure 5: Evolution of the game (Barabasi-Albert, question 1)

13
Figure 6: Evolution of the game (Barabasi-Albert, question 3)

14
Figure 7: Evolution of the game (Full, question 1)

15
Figure 8: Evolution of the game (Full, question 2)

16
Figure 9: Evolution of the game (Erdos-Renyi, question 1)

17
References
[1] Frederick S. Cognitive reflection and decision making.
2005;19(4):25–42.

The Journal of Economic Perspectives.

[2] Cokely ET, Galesic M, Schulz E, Ghazal S, Garcia-Retamero R. Measuring risk literacy: The Berlin
numeracy test. Judgment and Decision Making. 2012;7(1):25–47.

18

Contenu connexe

Similaire à Electronic Supplementary Material for: Analytical reasoning task reveals limits of social learning in networks

ICPSR - Complex Systems Models in the Social Sciences - Lecture 3 - Professor...
ICPSR - Complex Systems Models in the Social Sciences - Lecture 3 - Professor...ICPSR - Complex Systems Models in the Social Sciences - Lecture 3 - Professor...
ICPSR - Complex Systems Models in the Social Sciences - Lecture 3 - Professor...
Daniel Katz
 
Chapter 10Matching MarketsFrom the book Networks, Crow.docx
Chapter 10Matching MarketsFrom the book Networks, Crow.docxChapter 10Matching MarketsFrom the book Networks, Crow.docx
Chapter 10Matching MarketsFrom the book Networks, Crow.docx
cravennichole326
 
for sbi so Ds c c++ unix rdbms sql cn os
for sbi so   Ds c c++ unix rdbms sql cn osfor sbi so   Ds c c++ unix rdbms sql cn os
for sbi so Ds c c++ unix rdbms sql cn os
alisha230390
 

Similaire à Electronic Supplementary Material for: Analytical reasoning task reveals limits of social learning in networks (20)

ICPSR - Complex Systems Models in the Social Sciences - Lecture 3 - Professor...
ICPSR - Complex Systems Models in the Social Sciences - Lecture 3 - Professor...ICPSR - Complex Systems Models in the Social Sciences - Lecture 3 - Professor...
ICPSR - Complex Systems Models in the Social Sciences - Lecture 3 - Professor...
 
Bridging Centrality: Identifying Bridging Nodes in Transportation Network
Bridging Centrality: Identifying Bridging Nodes in Transportation NetworkBridging Centrality: Identifying Bridging Nodes in Transportation Network
Bridging Centrality: Identifying Bridging Nodes in Transportation Network
 
unit06-3-Trees.pdf
unit06-3-Trees.pdfunit06-3-Trees.pdf
unit06-3-Trees.pdf
 
Medicinal Applications of Quantum Computing
Medicinal Applications of Quantum ComputingMedicinal Applications of Quantum Computing
Medicinal Applications of Quantum Computing
 
Community detection
Community detectionCommunity detection
Community detection
 
Chapter 10Matching MarketsFrom the book Networks, Crow.docx
Chapter 10Matching MarketsFrom the book Networks, Crow.docxChapter 10Matching MarketsFrom the book Networks, Crow.docx
Chapter 10Matching MarketsFrom the book Networks, Crow.docx
 
Socialnetworkanalysis (Tin180 Com)
Socialnetworkanalysis (Tin180 Com)Socialnetworkanalysis (Tin180 Com)
Socialnetworkanalysis (Tin180 Com)
 
Wolfram 3
Wolfram 3Wolfram 3
Wolfram 3
 
Identification system of characters in vehicular plates
Identification system of characters in vehicular platesIdentification system of characters in vehicular plates
Identification system of characters in vehicular plates
 
for sbi so Ds c c++ unix rdbms sql cn os
for sbi so   Ds c c++ unix rdbms sql cn osfor sbi so   Ds c c++ unix rdbms sql cn os
for sbi so Ds c c++ unix rdbms sql cn os
 
CLIM Program: Remote Sensing Workshop, Blocking Methods for Spatial Statistic...
CLIM Program: Remote Sensing Workshop, Blocking Methods for Spatial Statistic...CLIM Program: Remote Sensing Workshop, Blocking Methods for Spatial Statistic...
CLIM Program: Remote Sensing Workshop, Blocking Methods for Spatial Statistic...
 
EVOLUTIONARY CENTRALITY AND MAXIMAL CLIQUES IN MOBILE SOCIAL NETWORKS
EVOLUTIONARY CENTRALITY AND MAXIMAL CLIQUES IN MOBILE SOCIAL NETWORKSEVOLUTIONARY CENTRALITY AND MAXIMAL CLIQUES IN MOBILE SOCIAL NETWORKS
EVOLUTIONARY CENTRALITY AND MAXIMAL CLIQUES IN MOBILE SOCIAL NETWORKS
 
Z and t_tests
Z and t_testsZ and t_tests
Z and t_tests
 
ALTERNATIVES TO BETWEENNESS CENTRALITY: A MEASURE OF CORRELATION COEFFICIENT
ALTERNATIVES TO BETWEENNESS CENTRALITY: A MEASURE OF CORRELATION COEFFICIENTALTERNATIVES TO BETWEENNESS CENTRALITY: A MEASURE OF CORRELATION COEFFICIENT
ALTERNATIVES TO BETWEENNESS CENTRALITY: A MEASURE OF CORRELATION COEFFICIENT
 
Social Connectome
Social ConnectomeSocial Connectome
Social Connectome
 
Quantum persistent k cores for community detection
Quantum persistent k cores for community detectionQuantum persistent k cores for community detection
Quantum persistent k cores for community detection
 
Color_Spaces.pptx
Color_Spaces.pptxColor_Spaces.pptx
Color_Spaces.pptx
 
A new survey on biclustering of
A new survey on biclustering ofA new survey on biclustering of
A new survey on biclustering of
 
A NEW SURVEY ON BICLUSTERING OF MICROARRAY DATA
A NEW SURVEY ON BICLUSTERING OF MICROARRAY DATAA NEW SURVEY ON BICLUSTERING OF MICROARRAY DATA
A NEW SURVEY ON BICLUSTERING OF MICROARRAY DATA
 
15_representation.pdf
15_representation.pdf15_representation.pdf
15_representation.pdf
 

Plus de Dario Caliendo

iOS backdoors attack points and surveillance mechanisms
iOS backdoors attack points and surveillance mechanismsiOS backdoors attack points and surveillance mechanisms
iOS backdoors attack points and surveillance mechanisms
Dario Caliendo
 
Samsung Sustainability reports 2014
Samsung Sustainability reports 2014Samsung Sustainability reports 2014
Samsung Sustainability reports 2014
Dario Caliendo
 
Aumento Equo Compenso: ecco la tabella ufficiale con tutti in rincari di smar...
Aumento Equo Compenso: ecco la tabella ufficiale con tutti in rincari di smar...Aumento Equo Compenso: ecco la tabella ufficiale con tutti in rincari di smar...
Aumento Equo Compenso: ecco la tabella ufficiale con tutti in rincari di smar...
Dario Caliendo
 
Audiweb @ Iab Seminar Mobile & Advertising
Audiweb @ Iab Seminar Mobile & AdvertisingAudiweb @ Iab Seminar Mobile & Advertising
Audiweb @ Iab Seminar Mobile & Advertising
Dario Caliendo
 
Auricolari, svelato il mistero dei nodi nei cavi
Auricolari, svelato il mistero dei nodi nei caviAuricolari, svelato il mistero dei nodi nei cavi
Auricolari, svelato il mistero dei nodi nei cavi
Dario Caliendo
 
Le 250 nuove Emoticon che saranno introdotte a Luglio 2014
Le 250 nuove Emoticon che saranno introdotte a Luglio 2014Le 250 nuove Emoticon che saranno introdotte a Luglio 2014
Le 250 nuove Emoticon che saranno introdotte a Luglio 2014
Dario Caliendo
 
Calcoli tariffe 2013-2014
Calcoli tariffe 2013-2014Calcoli tariffe 2013-2014
Calcoli tariffe 2013-2014
Dario Caliendo
 
Brevetto Apple: Sistemi e metodi di controllo della fotocamera
Brevetto Apple: Sistemi e metodi di controllo della fotocameraBrevetto Apple: Sistemi e metodi di controllo della fotocamera
Brevetto Apple: Sistemi e metodi di controllo della fotocamera
Dario Caliendo
 
Samsung, in arrivo uno smartwatch indipendente che non richiederà uno smartphone
Samsung, in arrivo uno smartwatch indipendente che non richiederà uno smartphoneSamsung, in arrivo uno smartwatch indipendente che non richiederà uno smartphone
Samsung, in arrivo uno smartwatch indipendente che non richiederà uno smartphone
Dario Caliendo
 
Cider, avviare le applicazoni iOS su Android
Cider, avviare le applicazoni iOS su AndroidCider, avviare le applicazoni iOS su Android
Cider, avviare le applicazoni iOS su Android
Dario Caliendo
 
Equo compenso: sondaggio copia privata Quorum
Equo compenso: sondaggio copia privata QuorumEquo compenso: sondaggio copia privata Quorum
Equo compenso: sondaggio copia privata Quorum
Dario Caliendo
 
Apple Q2 fy14 earnings financials
Apple Q2 fy14 earnings financialsApple Q2 fy14 earnings financials
Apple Q2 fy14 earnings financials
Dario Caliendo
 
Apple Patent: Sports monitoring system for headphones, earbuds and/or headsets
Apple Patent: Sports monitoring system for headphones, earbuds and/or headsetsApple Patent: Sports monitoring system for headphones, earbuds and/or headsets
Apple Patent: Sports monitoring system for headphones, earbuds and/or headsets
Dario Caliendo
 
Anti social media - Racism on Twitter
Anti social media - Racism on TwitterAnti social media - Racism on Twitter
Anti social media - Racism on Twitter
Dario Caliendo
 

Plus de Dario Caliendo (20)

Open Signal 2014 Android Fragmentation Report
Open Signal 2014 Android Fragmentation ReportOpen Signal 2014 Android Fragmentation Report
Open Signal 2014 Android Fragmentation Report
 
Siri su Mac: il brevetto di Apple
Siri su Mac: il brevetto di AppleSiri su Mac: il brevetto di Apple
Siri su Mac: il brevetto di Apple
 
Eyeglasses-free Display: Towards Correcting Visual Aberrations with Computati...
Eyeglasses-free Display: Towards Correcting Visual Aberrations with Computati...Eyeglasses-free Display: Towards Correcting Visual Aberrations with Computati...
Eyeglasses-free Display: Towards Correcting Visual Aberrations with Computati...
 
Ip 14-847 en
Ip 14-847 enIp 14-847 en
Ip 14-847 en
 
iOS backdoors attack points and surveillance mechanisms
iOS backdoors attack points and surveillance mechanismsiOS backdoors attack points and surveillance mechanisms
iOS backdoors attack points and surveillance mechanisms
 
Samsung Sustainability reports 2014
Samsung Sustainability reports 2014Samsung Sustainability reports 2014
Samsung Sustainability reports 2014
 
Aumento Equo Compenso: ecco la tabella ufficiale con tutti in rincari di smar...
Aumento Equo Compenso: ecco la tabella ufficiale con tutti in rincari di smar...Aumento Equo Compenso: ecco la tabella ufficiale con tutti in rincari di smar...
Aumento Equo Compenso: ecco la tabella ufficiale con tutti in rincari di smar...
 
Audiweb @ Iab Seminar Mobile & Advertising
Audiweb @ Iab Seminar Mobile & AdvertisingAudiweb @ Iab Seminar Mobile & Advertising
Audiweb @ Iab Seminar Mobile & Advertising
 
Auricolari, svelato il mistero dei nodi nei cavi
Auricolari, svelato il mistero dei nodi nei caviAuricolari, svelato il mistero dei nodi nei cavi
Auricolari, svelato il mistero dei nodi nei cavi
 
Le 250 nuove Emoticon che saranno introdotte a Luglio 2014
Le 250 nuove Emoticon che saranno introdotte a Luglio 2014Le 250 nuove Emoticon che saranno introdotte a Luglio 2014
Le 250 nuove Emoticon che saranno introdotte a Luglio 2014
 
Calcoli tariffe 2013-2014
Calcoli tariffe 2013-2014Calcoli tariffe 2013-2014
Calcoli tariffe 2013-2014
 
Internet Trends 2014
Internet Trends 2014Internet Trends 2014
Internet Trends 2014
 
Brevetto Apple: Sistemi e metodi di controllo della fotocamera
Brevetto Apple: Sistemi e metodi di controllo della fotocameraBrevetto Apple: Sistemi e metodi di controllo della fotocamera
Brevetto Apple: Sistemi e metodi di controllo della fotocamera
 
Samsung, in arrivo uno smartwatch indipendente che non richiederà uno smartphone
Samsung, in arrivo uno smartwatch indipendente che non richiederà uno smartphoneSamsung, in arrivo uno smartwatch indipendente che non richiederà uno smartphone
Samsung, in arrivo uno smartwatch indipendente che non richiederà uno smartphone
 
Cider, avviare le applicazoni iOS su Android
Cider, avviare le applicazoni iOS su AndroidCider, avviare le applicazoni iOS su Android
Cider, avviare le applicazoni iOS su Android
 
Equo compenso: sondaggio copia privata Quorum
Equo compenso: sondaggio copia privata QuorumEquo compenso: sondaggio copia privata Quorum
Equo compenso: sondaggio copia privata Quorum
 
Apple Q2 fy14 earnings financials
Apple Q2 fy14 earnings financialsApple Q2 fy14 earnings financials
Apple Q2 fy14 earnings financials
 
The future of digital trust
The future of digital trust The future of digital trust
The future of digital trust
 
Apple Patent: Sports monitoring system for headphones, earbuds and/or headsets
Apple Patent: Sports monitoring system for headphones, earbuds and/or headsetsApple Patent: Sports monitoring system for headphones, earbuds and/or headsets
Apple Patent: Sports monitoring system for headphones, earbuds and/or headsets
 
Anti social media - Racism on Twitter
Anti social media - Racism on TwitterAnti social media - Racism on Twitter
Anti social media - Racism on Twitter
 

Dernier

Capstone slidedeck for my capstone project part 2.pdf
Capstone slidedeck for my capstone project part 2.pdfCapstone slidedeck for my capstone project part 2.pdf
Capstone slidedeck for my capstone project part 2.pdf
eliklein8
 
+971565801893>> ORIGINAL CYTOTEC ABORTION PILLS FOR SALE IN DUBAI AND ABUDHABI<<
+971565801893>> ORIGINAL CYTOTEC ABORTION PILLS FOR SALE IN DUBAI AND ABUDHABI<<+971565801893>> ORIGINAL CYTOTEC ABORTION PILLS FOR SALE IN DUBAI AND ABUDHABI<<
+971565801893>> ORIGINAL CYTOTEC ABORTION PILLS FOR SALE IN DUBAI AND ABUDHABI<<
Health
 
Jual Obat Aborsi Palu ( Taiwan No.1 ) 085657271886 Obat Penggugur Kandungan C...
Jual Obat Aborsi Palu ( Taiwan No.1 ) 085657271886 Obat Penggugur Kandungan C...Jual Obat Aborsi Palu ( Taiwan No.1 ) 085657271886 Obat Penggugur Kandungan C...
Jual Obat Aborsi Palu ( Taiwan No.1 ) 085657271886 Obat Penggugur Kandungan C...
ZurliaSoop
 
Call Girls in Chattarpur (delhi) call me [9953056974] escort service 24X7
Call Girls in Chattarpur (delhi) call me [9953056974] escort service 24X7Call Girls in Chattarpur (delhi) call me [9953056974] escort service 24X7
Call Girls in Chattarpur (delhi) call me [9953056974] escort service 24X7
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Capstone slidedeck for my capstone final edition.pdf
Capstone slidedeck for my capstone final edition.pdfCapstone slidedeck for my capstone final edition.pdf
Capstone slidedeck for my capstone final edition.pdf
eliklein8
 

Dernier (20)

Interpreting the brief for the media IDY
Interpreting the brief for the media IDYInterpreting the brief for the media IDY
Interpreting the brief for the media IDY
 
Capstone slidedeck for my capstone project part 2.pdf
Capstone slidedeck for my capstone project part 2.pdfCapstone slidedeck for my capstone project part 2.pdf
Capstone slidedeck for my capstone project part 2.pdf
 
SELECTING A SOCIAL MEDIA MARKETING COMPANY
SELECTING A SOCIAL MEDIA MARKETING COMPANYSELECTING A SOCIAL MEDIA MARKETING COMPANY
SELECTING A SOCIAL MEDIA MARKETING COMPANY
 
Capstone slide deck on the TikTok revolution
Capstone slide deck on the TikTok revolutionCapstone slide deck on the TikTok revolution
Capstone slide deck on the TikTok revolution
 
Elite Class ➥8448380779▻ Call Girls In New Friends Colony Delhi NCR
Elite Class ➥8448380779▻ Call Girls In New Friends Colony Delhi NCRElite Class ➥8448380779▻ Call Girls In New Friends Colony Delhi NCR
Elite Class ➥8448380779▻ Call Girls In New Friends Colony Delhi NCR
 
Stunning ➥8448380779▻ Call Girls In Paharganj Delhi NCR
Stunning ➥8448380779▻ Call Girls In Paharganj Delhi NCRStunning ➥8448380779▻ Call Girls In Paharganj Delhi NCR
Stunning ➥8448380779▻ Call Girls In Paharganj Delhi NCR
 
Social media marketing/Seo expert and digital marketing
Social media marketing/Seo expert and digital marketingSocial media marketing/Seo expert and digital marketing
Social media marketing/Seo expert and digital marketing
 
+971565801893>> ORIGINAL CYTOTEC ABORTION PILLS FOR SALE IN DUBAI AND ABUDHABI<<
+971565801893>> ORIGINAL CYTOTEC ABORTION PILLS FOR SALE IN DUBAI AND ABUDHABI<<+971565801893>> ORIGINAL CYTOTEC ABORTION PILLS FOR SALE IN DUBAI AND ABUDHABI<<
+971565801893>> ORIGINAL CYTOTEC ABORTION PILLS FOR SALE IN DUBAI AND ABUDHABI<<
 
Ready to get noticed? Partner with Sociocosmos
Ready to get noticed? Partner with SociocosmosReady to get noticed? Partner with Sociocosmos
Ready to get noticed? Partner with Sociocosmos
 
MODERN PODCASTING ,CREATING DREAMS TODAY.
MODERN PODCASTING ,CREATING DREAMS TODAY.MODERN PODCASTING ,CREATING DREAMS TODAY.
MODERN PODCASTING ,CREATING DREAMS TODAY.
 
This is a Powerpoint about research into the codes and conventions of a film ...
This is a Powerpoint about research into the codes and conventions of a film ...This is a Powerpoint about research into the codes and conventions of a film ...
This is a Powerpoint about research into the codes and conventions of a film ...
 
Elite Class ➥8448380779▻ Call Girls In Nehru Place Delhi NCR
Elite Class ➥8448380779▻ Call Girls In Nehru Place Delhi NCRElite Class ➥8448380779▻ Call Girls In Nehru Place Delhi NCR
Elite Class ➥8448380779▻ Call Girls In Nehru Place Delhi NCR
 
The Butterfly Effect
The Butterfly EffectThe Butterfly Effect
The Butterfly Effect
 
Jual Obat Aborsi Palu ( Taiwan No.1 ) 085657271886 Obat Penggugur Kandungan C...
Jual Obat Aborsi Palu ( Taiwan No.1 ) 085657271886 Obat Penggugur Kandungan C...Jual Obat Aborsi Palu ( Taiwan No.1 ) 085657271886 Obat Penggugur Kandungan C...
Jual Obat Aborsi Palu ( Taiwan No.1 ) 085657271886 Obat Penggugur Kandungan C...
 
Website research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazineWebsite research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazine
 
CASH PAYMENT ON GIRL HAND TO HAND HOUSEWIFE
CASH PAYMENT ON GIRL HAND TO HAND HOUSEWIFECASH PAYMENT ON GIRL HAND TO HAND HOUSEWIFE
CASH PAYMENT ON GIRL HAND TO HAND HOUSEWIFE
 
Call Girls in Chattarpur (delhi) call me [9953056974] escort service 24X7
Call Girls in Chattarpur (delhi) call me [9953056974] escort service 24X7Call Girls in Chattarpur (delhi) call me [9953056974] escort service 24X7
Call Girls in Chattarpur (delhi) call me [9953056974] escort service 24X7
 
Your LinkedIn Makeover: Sociocosmos Presence Package
Your LinkedIn Makeover: Sociocosmos Presence PackageYour LinkedIn Makeover: Sociocosmos Presence Package
Your LinkedIn Makeover: Sociocosmos Presence Package
 
Capstone slidedeck for my capstone final edition.pdf
Capstone slidedeck for my capstone final edition.pdfCapstone slidedeck for my capstone final edition.pdf
Capstone slidedeck for my capstone final edition.pdf
 
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCRElite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
 

Electronic Supplementary Material for: Analytical reasoning task reveals limits of social learning in networks

  • 1. Electronic Supplementary Material for: Analytical reasoning task reveals limits of social learning in networks Iyad Rahwan, Dmytro Krasnoshtan, Azim Shari↵, Jean-Fran¸ois Bonnefon c A A.1 Experimental Interface Tutorial Screenshots 1
  • 2. 2
  • 3. 3
  • 4. 4
  • 5. 5
  • 6. A.2 Quiz Questions Following is the set of quiz questions that participants have to correctly answer before they can proceed to the experiment. The correct answers are highlighted in bold. How many times will you see each question? 1. Only once 2. 5 times Does your reward depends on the responses of other players? 1. Yes 2. No How do you make money in this game? 1. Every correct response gets me money 2. Not every correct response gets me money, only the last trial counts for each question 3. Not every correct response gets me money, multiple correct responses to the same question only count as one 6
  • 7. B Questions Below is the list of all questions. The first three questions corresponded to the Cognitive Reflection Test (CRT). These three questions generate an incorrect intuitive answer, which must be inhibited in order to produce the correct analytic answer [1]. 1. [CRT1] In a lake, there is a patch of lily pads. Every day, the patch doubles in size. If it takes 48 days for the patch to cover the entire lake, how long would it take for the patch to cover half of the lake? (Answer: 47) 2. [CRT2] If it takes 5 machines 5 minutes to make 5 widgets, how long would it take 100 machines to make 100 widgets? Write the answer in minutes. (Answer: 5) 3. [CRT3] A bat and a ball cost $1.10 in total. The bat costs $1.00 more than the ball. How much does the ball cost? (Answer: 0.05) After the three CRT questions, subjects moved on to another series of four questions from the Berlin Numeracy Test (BNT), which we do not discuss in this article [2]. Being either too easy or too hard, these questions produced little variance between participants in our networks, and thus did not allow us to test our hypotheses (see Figure 1 below for a visualization of the responses in the BNT questions). As these question came after participants had completed the three CRT questions, there is no concern that they could have contaminated the CRT data that we analyze in this article. 1. [BNT1] Imagine we are throwing a five-sided die 50 times. On average, out of these 50 throws how many times would this five-sided die show an odd number (1, 3 or 5)? out of 50 throws. (Answer: 30) 2. [BNT2] Out of 1,000 people in a small town 500 are members of a choir. Out of these 500 members in the choir 100 are men. Out of the 500 inhabitants that are not in the choir 300 are men. What is the probability that a randomly drawn man (not a person) is a member of the choir? (please indicate the probability in percents) (Answer: 25) 3. [BNT3] Imagine we are throwing a loaded die (6 sides). The probability that the die shows a 6 is twice as high as the probability of each of the other numbers. On average, out of these 70 throws, how many times would the die show the number 6? out of 70 throws. (Answer: 20) 4. [BNT4] In a forest 20% of mushrooms are red, 50% brown and 30% white. A red mushroom is poisonous with a probability of 20%. A mushroom that is not red is poisonous with a probability of 5%. What is the probability that a poisonous mushroom in the forest is red? (Answer: 50) 7
  • 8. Proportion of correct responses TOPOLOGY Full First Question Erdos−Renyi Barabasi−Albert Second Question Clustered Third Question Baseline Fourth Qestion 1.00 0.75 0.50 0.25 0.00 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 Trial Figure 1: BNT questions are either too easy or too hard, reducing variance observed in CRT questions. 8
  • 9. C C.1 Network Structures & Their Properties The Networks A network (or graph) consists of a set V vertices (a.k.a. nodes, individuals), and a set E of edges (a.k.a. connections or links) between them. Elements of E can be denoted by a pair Eij = (i, j) where i, j 2 V . Each of our experimental sessions ran on one of the four graphs: (1) Barabasi-Albert model; (2) Clustering graph; (3) Erdos-Renyi model; (4) Full graph. The di↵erent graph structures are visually depicted below. These graphs were chosen due to significant discrepancy in their measures on the macro (network) and micro (node) level, as shown below. Barabasi−Albert model Clustering graph Full graph Erdos−Renyi model Figure 2: List of graphs 9
  • 10. C.2 Micro Measures And on the micro level (for each node): Degree: The degree ki of a vertex i is simply the number of edges incident to this vertex. In a directed graph, we can distinguish between the out-degree (outgoing edges) and in-degree (incoming edges). In the present paper, edges are considered undirected. The di↵erent graph structures we used have significantly varying distributions of node degrees, as shown below. The degree distribution of the Erdo-Renyi graph follows a Poission distribution, thus most nodes have a more or less equal number of neighbors (no one is disproportionately popular). In contrasted, in the Barabasi-Albert graph, the distribution is long-tailed, with a few very highly connected nodes. In the full graph, everyone has equal degree, since everyone is connected to everyone else. Finally, in the clustering graph, degrees are more or less identical. However, as we will see below, some nodes are a more privilaged position in the middle of the graph. Barabasi model Erdos−Renyi model 20 20 15 15 10 10 5 5 0 0 5 10 15 0 20 0 Full graph 5 10 15 20 Clustering graph 20 20 15 15 10 10 5 5 0 0 5 10 15 0 20 0 5 10 15 20 Figure 3: Degree distribution Local clustering coe cient: The local clustering coe cient captures the following intuition: out of all pairs of friends that i is connected to, how many of those friends are also friends with one another. In other words: Ci = number of triangles connected to node i number of triples centered around node i where a triple centred around node i is a set of two edges connected to node i (if the degree of node i is 0 or 1, we which gives us Ci = 0/0, we can set Ci = 0). High local clustering coe cient for node i indicates that i belongs to a tightly knit group. More formally, the local clustering coe cient ci is defined as follows: Ci = |{Ejk }| : vj , vk 2 Ni , Ejk 2 E ki (ki 1) where ki is the out-degree of vertex i, and Ni = {vj : Eij 2 E} is the set of out-neighbours of vertex i. For 10
  • 11. undirected graphs the value of Ci is normalized as Ci0 = 2Ci . If to rephrase this in the simple words, the local clustering coe cient of a vertex in a graph shows how close its neighbors are to being a full graph. The figure below highlights how the distribution of local clustering coe cients varies significantly across the di↵erent network structures. In particular, nodes in the Erdos-Renyi and Barabasi-Albert graphs have much lower clustering compared to the Clustering graph. Note that in the full graph, every node has a local clustering coe cient of 1, since everyone is connected to everyone else. Betweenness centrality: The betweenness centrality of a node is equal to the number of shortest paths (among all other vertices) that pass through that node. The higher the number, the more important is the node, in the sense that there is a small number of hops between that node and the majority of the network. Mathematically it can be defined as g(v) = X s6=v6=t st (v) st where st is the total number of shortest paths from node s to node t and st (v) is the number of those paths that pass through v. The figure below shows that the betweenness centrality of nodes in the Clustering graph vary significantly (contrast this with the fact that the node degrees in this graph are almost identical to one another). Clustering coefficient 1 0.5 0 Barabasi model Erdos−Renyi model Full graph Clustering graph Betweenness centrality 60 40 20 0 −20 Barabasi model Erdos−Renyi model Full graph Clustering graph Figure 4: Clustering coe cient, betweenness centrality C.3 Macro Measures 2|E| Graph density: In graph theory, graph density is defined as |V |(|V | 1) . Density represents the ratio of the number of edges to the maximum number of possible edges. Density will therefore have a value in the interval [0, 1]. Clustering coe cient of a graph: The clustering coe cient of an undirected graph is a measure of the number of triangles in a graph. The clustering coe cient for the whole graph is the average of the local clustering coe cients Ci : n 1X C= Ci n i=1 11
  • 12. where n is the number of nodes in the network. By definition 0  Ci  1 and 0  C  1. Diameter: Diameter of the graph is the lenght of the longest shortest path between any two vertices of the graph. Macro level parameters for the four classes of networks are summarized in the table below. Note how the density and diameter of all graphs is almost identical, with the exception of the full graph, which has maximum density. graph type Barabassi Erdos-Renyi Full graph Clustering graph Density 0.195 0.211 1 0.179 Clustering 0.208 0.158 1 0.714 12 Diameter 4 4 1 5 Number of edges 37 40 190 34
  • 13. D Evolution of Network States The figures below show samples of the detailed evolution of correct (blue) and incorrect answers (red) in a selection of network/question combinations. Figure 5: Evolution of the game (Barabasi-Albert, question 1) 13
  • 14. Figure 6: Evolution of the game (Barabasi-Albert, question 3) 14
  • 15. Figure 7: Evolution of the game (Full, question 1) 15
  • 16. Figure 8: Evolution of the game (Full, question 2) 16
  • 17. Figure 9: Evolution of the game (Erdos-Renyi, question 1) 17
  • 18. References [1] Frederick S. Cognitive reflection and decision making. 2005;19(4):25–42. The Journal of Economic Perspectives. [2] Cokely ET, Galesic M, Schulz E, Ghazal S, Garcia-Retamero R. Measuring risk literacy: The Berlin numeracy test. Judgment and Decision Making. 2012;7(1):25–47. 18