The pretense of over-precision

By the way, the rule is “For the last gymnast or group of a rotation, this limit is one (1) minute after the score is shown on the scoreboard”. It doesn’t say “60 seconds”. It says “one minute”, and mathematical precision speaking, 64/60 seconds is 1.06 minutes; indistinguishable from 1 minute.

There is the failure of the judges on whether Voinea stepped out of bounds. There is the failure of the judges on properly scoring Chiles’ level of difficulty in the first place (which they admitted to). There is the failure of the judges to properly record the time of the Chiles challenge. And I’m not even considering the Romanian conflict of interest issue regarding the appeal panel or the fact that they sent messages to the wrong email account in a manner that prevented timely provision of evidence.

I don’t know how many angels can dance on the head of a pin, but surely there’s room for three!

Statistics is a measurement of surprise.

Once in 10 million elections. For realz. Have there even been 10 million elections in the history of the world?

Math fraud isn’t hard to find if you just bother to try. But it won’t make you many friends, trust me, or ask me.

What is also remarkable about the “official” Venezuelan result is that 5,150,092 divided by 10,058,774 is very precisely 51.20000%. Not, for example 51.16378% rounded up, nor 51.23194% rounded down.

Similarly, the number reported for Edmundo Gonzalez was 4,445,978 out of 10,058,774. Also, remarkably precisely 44.20000%. Of course, the votes cast for “Others” tallied 462,704 of 10,058,774, which is precisely 4.60000%.

That is, in each of 3 cases ALL of the last 4 of 7 significant digits is ‘0000’. (The justifiable # of significant digits is the least of the 2 operands, e.g. 7 in 5,150,092 not the 8 in 10,058,774).

This would be laughable were it not for all of the already-dead and soon to be dead on the streets of Caracas.


I am far from the first to point out the obvious fraud apparent in the numbers reported in the Venezuelan vote .

What is the measure of “surprise!” looking at the official Venezuelan vote

It’s easy to just brute force it. Here’s some Python code that find the frequency you would expect all of the last 4 significant figures being the-same (not even all-zero, just the same) for the 3 outcomes.

#!/usr/bin/env python
# BRUTE FORCE proof of Maduros fraud
# in which you will never get a positive result for all three having the same last 4 precision numerals
# no matter how long you wait

import random
total = 10058774
anytwo = 0
allthree = 0
k=0
j=-1

# this will go on forever
# you will never ever get a positive result for all three

while k > j: # infinite loop
. maduro=0
. gonzalez=0
. other=0

.  for i in range (0, total):
.        n = random.random()
.        if n < 0.512 + 0.0005:
.              maduro += 1
.        elif n < (0.512 + 0.442 + 0.0005):
.              gonzalez += 1
.        else:
.              other += 1
.
.   # round – with 10 million votes, you get 7 sign digits
.   maduro = round(maduro/total, 7)
.   gonzalez = round(gonzalez/total, 7)
.   other = round(other/total, 7)

.   # convert last 4 digits to string
.   maduros = str(maduro)[5:]
.   gonzalezs = str(gonzalez)[5:]
.   others = str(other)[5:]

. # make a set
. unique_values = {maduros, gonzalezs, others}

. # If the set length is less than 3, then at least two are the same
. if len(unique_values) < 3:
. anytwo += 1
. # If the set length is 1, then all three are the same
. if len(unique_values) == 1:
. allthree += 1
.        print (anytwo, allthree)
.  if k % 1000000 == 0 and k > 0:
.       print (k, anytwo, allthree, ‘Current p-values are < ‘, (anytwo+1)/k, (allthree+1)/k)
. k+=1

Scroll to Top