% We modify our speech regulations to a more targeted approach. We only % speak agains the extreme that agrees with the overall magnetization of % the echo chamber. %delete extraneous data from previous programs that have been run clear clc %Generating the initial opinions %population size Chambers = 10; PopSize = 100; %The list of everyone's opinions Opinions = zeros(1,PopSize*Chambers); Allegiances = zeros(1, PopSize*Chambers); for run = 1:12 %Initializing the opinion vector and the allegiance vector for j = 1:Chambers/2 for i = 1:PopSize if i <= PopSize*0.3 Opinions((j-1)*PopSize + i) = 1; Allegiances((j-1)*PopSize + i) = 10; else if i <= PopSize * 0.55 Opinions((j-1)*PopSize + i) = 2; Allegiances((j-1)*PopSize + i) = 30; else if i <= PopSize * 0.75 Opinions((j-1)*PopSize + i) = 3; Allegiances((j-1)*PopSize + i) = 50; else if i <= PopSize*0.90 Opinions((j-1)*PopSize + i) = 4; Allegiances((j-1)*PopSize + i) = 70; else Opinions((j-1)*PopSize + i) = 5; Allegiances((j-1)*PopSize + i) = 90; end end end end end end for j = Chambers/2 + 1 : Chambers for i = 1:PopSize if i <= PopSize*0.1 Opinions((j-1)*PopSize + i) = 1; Allegiances((j-1)*PopSize + i) = 10; else if i <= PopSize * 0.25 Opinions((j-1)*PopSize + i) = 2; Allegiances((j-1)*PopSize + i) = 30; else if i <= PopSize * 0.45 Opinions((j-1)*PopSize + i) = 3; Allegiances((j-1)*PopSize + i) = 50; else if i <= PopSize*0.70 Opinions((j-1)*PopSize + i) = 4; Allegiances((j-1)*PopSize + i) = 70; else Opinions((j-1)*PopSize + i) = 5; Allegiances((j-1)*PopSize + i) = 90; end end end end end end for conversations = 1:1000000 %the probability of the speaker coming from the moderating voice. C = rand; if C < 0.10 Listener = randi(Chambers * PopSize); %the chamber number of the listener Chamno = ceil(Listener/PopSize); %detecting magnetization mag = sum(Opinions(PopSize*(Chamno-1) + 1 : PopSize*Chamno))/PopSize; if mag < 3 if Opinions(Listener) == 1 A = rand; BaseOdds = 1/9; AllegianceOdds = Allegiances(Listener)/(100 - Allegiances(Listener)); TotalOdds = BaseOdds * AllegianceOdds; Threshold = TotalOdds/(1 + TotalOdds); if A < Threshold Opinions(Listener) = Opinions(Listener) + 1; end end Allegiances(Listener) = min(99, 100 - 0.9*(100 - Allegiances(Listener))); end if mag > 3 if Opinions(Listener) == 5 A = rand; BaseOdds = 1/9; AllegianceOdds = (100 - Allegiances(Listener))/Allegiances(Listener); TotalOdds = BaseOdds * AllegianceOdds; Threshold = TotalOdds/(1 + TotalOdds); if A < Threshold Opinions(Listener) = Opinions(Listener) - 1; end end Allegiances(Listener) = max(1,0.9*Allegiances(Listener)); end else %the probability of an in-chamber conversation B = rand; if B < 0.9 j = randi(Chambers); S = randi(PopSize); L = randi(PopSize); Speaker = (j - 1)*PopSize + S; Listener = (j - 1)*PopSize + L; else Speaker = randi(Chambers * PopSize); Listener = randi(Chambers * PopSize); end Chamno = ceil(Listener/PopSize); mag = sum(Opinions(PopSize*(Chamno-1) + 1 : PopSize*Chamno))/PopSize; Question = randi(4) + 0.5; if Opinions(Speaker) > Question Silence = rand; if mag < 3 Silence = 0; end if Question < 4.5 || Silence < 0.1 if Opinions(Listener) == Question - 0.5 A = rand; BaseOdds = 1/9; AllegianceOdds = Allegiances(Listener)/(100 - Allegiances(Listener)); TotalOdds = BaseOdds * AllegianceOdds; Threshold = TotalOdds/(1 + TotalOdds); if A < Threshold Opinions(Listener) = Opinions(Listener) + 1; end end Allegiances(Listener) = min(99, 100 - 0.9*(100 - Allegiances(Listener))); end else Silence = rand; if mag > 3 Silence = 0; end if Question > 1.5 || Silence < 0.1 if Opinions(Listener) == Question + 0.5 A = rand; BaseOdds = 1/9; AllegianceOdds = (100 - Allegiances(Listener))/Allegiances(Listener); TotalOdds = BaseOdds * AllegianceOdds; Threshold = TotalOdds/(1 + TotalOdds); if A < Threshold Opinions(Listener) = Opinions(Listener) - 1; end end Allegiances(Listener) = max(1,0.9*Allegiances(Listener)); end end end end figure(1) subplot(3,4,run) histogram(Opinions, linspace(0.5,5.5,6)) xlabel opinion ylabel popularity figure(2) subplot(3,4,run) histogram(Allegiances, linspace(0, 100, 21)) xlabel allegiance ylabel popularity for chamno = 1:10 a = floor((chamno-1)/5); b = mod((chamno-1), 5); figure(2*run + 1) subplot(5,2,2*b + a + 1) edges = [0.5, 1.5, 2.5, 3.5, 4.5, 5.5]; histogram(Opinions((chamno - 1)*PopSize + 1:chamno*PopSize), edges) xlabel opinion ylabel popularity figure(2*run + 2) subplot(5,2,2*b + a + 1) edges = linspace(0, 100, 21); histogram(Allegiances((chamno - 1)*PopSize + 1:chamno*PopSize), edges) xlabel allegiance ylabel popularity end run end