<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=utf-8"><meta name=Generator content="Microsoft Word 15 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
p.quotation, li.quotation, div.quotation
        {mso-style-name:quotation;
        mso-style-link:"quotation Char";
        margin-top:0in;
        margin-right:0in;
        margin-bottom:0in;
        margin-left:.5in;
        font-size:11.0pt;
        font-family:"Times New Roman",serif;
        font-weight:bold;
        font-style:italic;}
span.quotationChar
        {mso-style-name:"quotation Char";
        mso-style-link:quotation;
        font-family:"Times New Roman",serif;
        font-weight:bold;
        font-style:italic;}
span.EmailStyle21
        {mso-style-type:personal-reply;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri",sans-serif;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=EN-US link=blue vlink=purple style='word-wrap:break-word'><div class=WordSection1><p class=MsoNormal>Roger wrote:<o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=quotation>However, if there is the tiniest tendency toward voting one way or the other, then the probability&nbsp;of a close result dwindles with the turnout:<o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal>If you are correct here, then why doesn\u2019t it upend small sample theory?  Sample variance = population variance / sample size? <o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal>Nick <o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal>Nicholas Thompson<o:p></o:p></p><p class=MsoNormal>Emeritus Professor of Ethology and Psychology<o:p></o:p></p><p class=MsoNormal>Clark University<o:p></o:p></p><p class=MsoNormal><a href="mailto:ThompNickSon2@gmail.com"><span style='color:#0563C1'>ThompNickSon2@gmail.com</span></a><o:p></o:p></p><p class=MsoNormal><a href="https://wordpress.clarku.edu/nthompson/"><span style='color:#0563C1'>https://wordpress.clarku.edu/nthompson/</span></a><o:p></o:p></p><p class=MsoNormal> <o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><div style='border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in'><p class=MsoNormal><b>From:</b> Friam &lt;friam-bounces@redfish.com&gt; <b>On Behalf Of </b>Roger Critchlow<br><b>Sent:</b> Thursday, October 29, 2020 9:33 AM<br><b>To:</b> The Friday Morning Applied Complexity Coffee Group &lt;friam@redfish.com&gt;<br><b>Subject:</b> Re: [FRIAM] high turnout and tight races?<o:p></o:p></p></div><p class=MsoNormal><o:p>&nbsp;</o:p></p><div><p class=MsoNormal>You're right, assuming that either vote is equally likely:<o:p></o:p></p><div><p class=MsoNormal><o:p>&nbsp;</o:p></p><div><p class=MsoNormal>julia&gt; for n in [10000, 100000, 1000000]<br>&nbsp; &nbsp; # run 1000 simulations<br>&nbsp; &nbsp; close = 0<br>&nbsp; &nbsp; for x in 1:1000<br>&nbsp; &nbsp; &nbsp; &nbsp; # collect votes<br>&nbsp; &nbsp; &nbsp; &nbsp; v = rand(Int(n))<br>&nbsp; &nbsp; &nbsp; &nbsp; n1 = count(v .&lt; 0.5)<br>&nbsp; &nbsp; &nbsp; &nbsp; n2 = n-n1<br>&nbsp; &nbsp; &nbsp; &nbsp; if (n1-n2)/n &lt; 0.01<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; close += 1<br>&nbsp; &nbsp; &nbsp; &nbsp; end<br>&nbsp; &nbsp; end<br>&nbsp; &nbsp; p = close/1000<br>&nbsp; &nbsp; println(&quot;pop $n has p(close) $p&quot;);<br>end<br>pop 10000 has p(close) 0.841<br>pop 100000 has p(close) 0.999<br>pop 1000000 has p(close) 1.0<o:p></o:p></p></div></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>However, if there is the tiniest tendency toward voting one way or the other, then the probability&nbsp;of a close result dwindles with the turnout:<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>bias = 0.51<br>for n in [10000, 100000, 1000000]<br>&nbsp; &nbsp; # run 1000 simulations<br>&nbsp; &nbsp; close = 0<br>&nbsp; &nbsp; for x in 1:1000<br>&nbsp; &nbsp; &nbsp; &nbsp; # collect votes<br>&nbsp; &nbsp; &nbsp; &nbsp; v = rand(Int(n))<br>&nbsp; &nbsp; &nbsp; &nbsp; n1 = count(v .&lt; bias)<br>&nbsp; &nbsp; &nbsp; &nbsp; n2 = n-n1<br>&nbsp; &nbsp; &nbsp; &nbsp; if (n1-n2)/n &lt; 0.01<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; close += 1<br>&nbsp; &nbsp; &nbsp; &nbsp; end<br>&nbsp; &nbsp; end<br>&nbsp; &nbsp; p = close/1000<br>&nbsp; &nbsp; println(&quot;pop $n has p(close) $p&quot;);<br>end<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>&nbsp;pop 10000 has p(close) 0.166<br>pop 100000 has p(close) 0.001<br>pop 1000000 has p(close) 0.0<o:p></o:p></p></div><div><p class=MsoNormal><o:p>&nbsp;</o:p></p></div><div><p class=MsoNormal>-- rec --<o:p></o:p></p></div></div><p class=MsoNormal><o:p>&nbsp;</o:p></p><div><div><p class=MsoNormal>On Wed, Oct 28, 2020 at 10:46 PM &lt;<a href="mailto:thompnickson2@gmail.com">thompnickson2@gmail.com</a>&gt; wrote:<o:p></o:p></p></div><blockquote style='border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in'><div><div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>HANG ON, Roger<o:p></o:p></p><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>&nbsp;<o:p></o:p></p><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>Variance decreases with N.<o:p></o:p></p><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>&nbsp;<o:p></o:p></p><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>Nicholas Thompson<o:p></o:p></p><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>Emeritus Professor of Ethology and Psychology<o:p></o:p></p><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>Clark University<o:p></o:p></p><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'><a href="mailto:ThompNickSon2@gmail.com" target="_blank"><span style='color:#0563C1'>ThompNickSon2@gmail.com</span></a><o:p></o:p></p><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'><a href="https://wordpress.clarku.edu/nthompson/" target="_blank"><span style='color:#0563C1'>https://wordpress.clarku.edu/nthompson/</span></a><o:p></o:p></p><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>&nbsp;<o:p></o:p></p><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>&nbsp;<o:p></o:p></p><div style='border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in'><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'><b>From:</b> Friam &lt;<a href="mailto:friam-bounces@redfish.com" target="_blank">friam-bounces@redfish.com</a>&gt; <b>On Behalf Of </b>Roger Critchlow<br><b>Sent:</b> Wednesday, October 28, 2020 7:16 PM<br><b>To:</b> The Friday Morning Applied Complexity Coffee Group &lt;<a href="mailto:friam@redfish.com" target="_blank">friam@redfish.com</a>&gt;<br><b>Subject:</b> Re: [FRIAM] high turnout and tight races?<o:p></o:p></p></div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>&nbsp;<o:p></o:p></p><div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>I would think that the more people who vote the less likely a tie or close outcome becomes, simply by the larger number of ways you can miss with more votes in play.<o:p></o:p></p><div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>&nbsp;<o:p></o:p></p></div><div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>-- rec --<o:p></o:p></p></div><div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>&nbsp;<o:p></o:p></p></div></div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>&nbsp;<o:p></o:p></p><div><div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>On Wed, Oct 28, 2020 at 8:17 PM Frank Wimberly &lt;<a href="mailto:wimberly3@gmail.com" target="_blank">wimberly3@gmail.com</a>&gt; wrote:<o:p></o:p></p></div><blockquote style='border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt'><div><p class=MsoNormal style='mso-margin-top-alt:auto;margin-bottom:12.0pt'>N = 3 is slightly better.&nbsp; But I don't have time or incentive to do a detailed statistical analysis.&nbsp;&nbsp;<o:p></o:p></p><div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>---<br>Frank C. Wimberly<br>140 Calle Ojo Feliz, <br>Santa Fe, NM 87505<br><br>505 670-9918<br>Santa Fe, NM<o:p></o:p></p></div></div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>&nbsp;<o:p></o:p></p><div><div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>On Wed, Oct 28, 2020, 6:14 PM Frank Wimberly &lt;<a href="mailto:wimberly3@gmail.com" target="_blank">wimberly3@gmail.com</a>&gt; wrote:<o:p></o:p></p></div><blockquote style='border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt'><div><p class=MsoNormal style='mso-margin-top-alt:auto;margin-bottom:12.0pt'>In 1964 Johnson beat Goldwater by 60 to 40.&nbsp; The Kennedy/Nixon and Gore/Bush elections were extremely close.&nbsp; In all three elections the turnout was between 35 and 40 percent.<o:p></o:p></p><div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>---<br>Frank C. Wimberly<br>140 Calle Ojo Feliz, <br>Santa Fe, NM 87505<br><br>505 670-9918<br>Santa Fe, NM<o:p></o:p></p></div></div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>&nbsp;<o:p></o:p></p><div><div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>On Wed, Oct 28, 2020, 6:00 PM Frank Wimberly &lt;<a href="mailto:wimberly3@gmail.com" target="_blank">wimberly3@gmail.com</a>&gt; wrote:<o:p></o:p></p></div><blockquote style='border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt'><div><p class=MsoNormal style='mso-margin-top-alt:auto;margin-bottom:12.0pt'>I'm saying that in this election there will be high turnout and not a very close election.<o:p></o:p></p><div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>---<br>Frank C. Wimberly<br>140 Calle Ojo Feliz, <br>Santa Fe, NM 87505<br><br>505 670-9918<br>Santa Fe, NM<o:p></o:p></p></div></div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>&nbsp;<o:p></o:p></p><div><div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>On Wed, Oct 28, 2020, 5:59 PM u\u01ddl\u0183 \u2199\u2199\u2199 &lt;<a href="mailto:gepropella@gmail.com" target="_blank">gepropella@gmail.com</a>&gt; wrote:<o:p></o:p></p></div><blockquote style='border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt'><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>So, what about the question I asked? You have no opinion on whether high turnout negatively or positively correlates with narrow victories?<br><br><br>On 10/28/20 4:52 PM, Frank Wimberly wrote:<br>&gt; I predict that Biden will win by a large margin and that the outcome will be clear on election night notwithstanding any outstanding uncounted votes.&nbsp; Young people are voting in unprecedented numbers and are reportedly voting against Trump.&nbsp; Similarly the elderly, who favored Trump over Clinton by 10+ percentage points in 2016 are favoring Biden over Trump by a similar margin, according to polls.<br>&gt; <br>&gt; The good thing about predictions is that they can be evaluated perfectly after the events have happened.<br>&gt; <br>&gt; Frank<br>&gt; <br>&gt; ---<br>&gt; Frank C. Wimberly<br>&gt; 140 Calle Ojo Feliz,<br>&gt; Santa Fe, NM 87505<br>&gt; <br>&gt; 505 670-9918<br>&gt; Santa Fe, NM<br>&gt; <br>&gt; On Wed, Oct 28, 2020, 5:20 PM u\u01ddl\u0183 \u2199\u2199\u2199 &lt;<a href="mailto:gepropella@gmail.com" target="_blank">gepropella@gmail.com</a> &lt;mailto:<a href="mailto:gepropella@gmail.com" target="_blank">gepropella@gmail.com</a>&gt;&gt; wrote:<br>&gt; <br>&gt;&nbsp; &nbsp; &nbsp;From:<br>&gt; <br>&gt;&nbsp; &nbsp; &nbsp;<a href="https://www.electoral-vote.com/evp2020/Pres/Maps/Oct28.html#item-7" target="_blank">https://www.electoral-vote.com/evp2020/Pres/Maps/Oct28.html#item-7</a> &lt;<a href="https://www.electoral-vote.com/evp2020/Pres/Maps/Oct28.html#item-7" target="_blank">https://www.electoral-vote.com/evp2020/Pres/Maps/Oct28.html#item-7</a>&gt;<br>&gt;&nbsp; &nbsp; &nbsp;&quot;6. High turnout makes razor-thin victories, like the ones Trump notched in Michigan, Wisconsin, and Pennsylvania in 2016, much less likely.&quot;<br>&gt; <br>&gt;&nbsp; &nbsp; &nbsp;Is that true? I've always heard that tight races lead to higher turnout, which would imply that high turnout would correlate WITH thin victories, not against them.<br><br>-- <br>\u2199\u2199\u2199 u\u01ddl\u0183<br><br>- .... . -..-. . -. -.. -..-. .. ... -..-. .... . .-. .<br>FRIAM Applied Complexity Group listserv<br>Zoom Fridays 9:30a-12p Mtn GMT-6&nbsp; <a href="http://bit.ly/virtualfriam" target="_blank">bit.ly/virtualfriam</a><br>un/subscribe <a href="http://redfish.com/mailman/listinfo/friam_redfish.com" target="_blank">http://redfish.com/mailman/listinfo/friam_redfish.com</a><br>archives: <a href="http://friam.471366.n2.nabble.com/FRIAM-COMIC" target="_blank">http://friam.471366.n2.nabble.com/<br>FRIAM-COMIC</a> <a href="http://friam-comic.blogspot.com/" target="_blank">http://friam-comic.blogspot.com/</a> <o:p></o:p></p></blockquote></div></blockquote></div></blockquote></div><p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'>- .... . -..-. . -. -.. -..-. .. ... -..-. .... . .-. .<br>FRIAM Applied Complexity Group listserv<br>Zoom Fridays 9:30a-12p Mtn GMT-6&nbsp; <a href="http://bit.ly/virtualfriam" target="_blank">bit.ly/virtualfriam</a><br>un/subscribe <a href="http://redfish.com/mailman/listinfo/friam_redfish.com" target="_blank">http://redfish.com/mailman/listinfo/friam_redfish.com</a><br>archives: <a href="http://friam.471366.n2.nabble.com/" target="_blank">http://friam.471366.n2.nabble.com/</a><br>FRIAM-COMIC <a href="http://friam-comic.blogspot.com/" target="_blank">http://friam-comic.blogspot.com/</a> <o:p></o:p></p></blockquote></div></div></div><p class=MsoNormal>- .... . -..-. . -. -.. -..-. .. ... -..-. .... . .-. .<br>FRIAM Applied Complexity Group listserv<br>Zoom Fridays 9:30a-12p Mtn GMT-6&nbsp; <a href="http://bit.ly/virtualfriam" target="_blank">bit.ly/virtualfriam</a><br>un/subscribe <a href="http://redfish.com/mailman/listinfo/friam_redfish.com" target="_blank">http://redfish.com/mailman/listinfo/friam_redfish.com</a><br>archives: <a href="http://friam.471366.n2.nabble.com/" target="_blank">http://friam.471366.n2.nabble.com/</a><br>FRIAM-COMIC <a href="http://friam-comic.blogspot.com/" target="_blank">http://friam-comic.blogspot.com/</a> <o:p></o:p></p></blockquote></div></div></body></html>