{% extends "base.html" %} {% block title %}Audit Results Report | {{ block.super }}{% endblock %} {% block content %}

Audit Results Report

Selected Audit Units

{% if s.random_seed %}

A total of {{ contest_batches|length }} audit units were selected for the audit. Some audit units were randomly selected, as part of a contest that was randomly selected for a risk-limiting audit. Other audit units were manually targeted as being of interest for a particular reason. The manually targeted units are listed after all the randomly selected ones.

The randomly selected units were chosen according to a plan that incorporated the auditing statistics described on the Contest pages (linked to from each audit unit). It selected the appropriate number of units for each selected contest randomly, but with their chance of selection proportional to their size (the number of "contest ballots" - ballots on which the contest appeared). That was done as follows. First, election officials came up with the following 15 rolls of 10-sided dice: {{ s.random_seed }}. The random selection was then based on the "Sum of Square Roots" pseudorandom number generator, using the dice throws for the random seed value. That means that you can check each and every step that led from the statistics and dice throws to the final selections with a simple calculator.

{% else %}

Note: the random seed has not yet been entered, so audit unit selections are not yet available.

{% endif %}

Statistics

Totals

Selections and Targeting

Auditing

Detailed results

For each audit unit in the detailed results below, the counts for each choice are listed - first the reported count, then the hand count.

{% if 0 %} {% endif %} {% for contestbatch in contest_batches %} {% with contestbatch.batch as batch %} {% if 1 %} {% endif %} {% if 1 %} {% for votecount in contestbatch.votecount_set.all|dictsortreversed:"votes" %} {% endfor %} {% endif %} {% endwith %} {% endfor %}
Contest Margin Confidence % Units to audit: NEGEXP Type Batches Ballots Contest BallotsNotesChoice, reported, manual
{{ contestbatch.contest }} {{ contestbatch.margin|floatformat:3 }} {% if contestbatch.stats %} {{ contestbatch.contest.confidence }} {% endif %} {{ contestbatch.stats.negexp_precincts|floatformat:1 }} {{ batch.type }} {{ batch.name }} {{ batch.ballots }} {{ contestbatch.contest_ballots }}{{ contestbatch.notes }}{{ votecount.choice.name }} {{ votecount.votes }} {{ votecount.votes }}
{% endblock %}