Slashdot Mirror


Maryland Tests Voting Machine, Declares Success

Dachannien writes "Capital News Service reports that the Maryland State Board of Elections has staged a test of its Diebold touch-screen voting machines in an effort to demonstrate their security and accuracy. A machine randomly selected from Maryland's voting machine warehouse was tested in a mock vote against two human vote-counting counterparts, and after counting fifty votes, the human vote counters had made several errors versus zero for the voting machine. But is this a legitimate test of the concerns of voting machine activists, or does it merely support a logical fallacy?"

48 comments

  1. In somewhat related news... by MSBob · · Score: 3, Informative

    International election observers noted several issues with the US election process this year. One of the criticism in their report is electronic voting without a paper trail. Here's the link

    --
    Your pizza just the way you ought to have it.
  2. It's the wrong test. by Pyromage · · Score: 3, Insightful

    We *know* computers can count very well. That's what they were designed for. The problem with the test they ran is that they tried to have a normal, successful election. Try this test: try to rig it. So it succeeds at the easy part, that proves nothing. I hope TrueVoteMD manages to flog the state on this one.

    1. Re:It's the wrong test. by TAGmclaren · · Score: 3, Insightful
      We *know* computers can count very well. That's what they were designed for. The problem with the test they ran is that they tried to have a normal, successful election. Try this test: try to rig it. So it succeeds at the easy part, that proves nothing. I hope TrueVoteMD manages to flog the state on this one.


      I'll tell you an even better "right" test - open source the damn thing. I cannot think of a better application of open source than the opening of electoral software. The concepts of honesty, transparency and so on are crucial for democratic elections - so why is the software to count votes being closed?

      It is UNACCEPTABLE. Write to your congressman, make a fuss, do whatever it takes - there should be open, transparent software!
      --
      Iran has endorsed
    2. Re:It's the wrong test. by hype7 · · Score: 2, Informative

      Damn straight!

      And guess what? This is exactly what Australia has done. If you want an example for when you write to your representative, use the Aussies.

      -- james

    3. Re:It's the wrong test. by alienw · · Score: 2, Insightful

      And what, exactly, would that solve? Why do so many idiots keep proposing these ridiculous "solutions"? How exactly is making software open-source going to solve anything? Do you seriously think it's more difficult to rig an election if it uses open-source software? If anything, it makes it easier.

      The ONLY real solution is to have machines print out OFFICIAL PAPER BALLOTS that the voter can check and put in a sealed ballot box and which can later be recounted by hand. This still enables the use of the electronic feature as a convenience. This is a simple and 100% effective solution.

    4. Re:It's the wrong test. by TAGmclaren · · Score: 1

      isn't obvious? by opening the source, you can see how the "rigs" might work!

      right now, how the hell do you know that the software that collects votes isn't adding one vote to kerry's count when someone votes for bush, and one vote for bush when someone votes for kerry?

      you don't - but if the source was open, you would!

      it's the same reason that spyware isn't in linux, and is in Windows. MS can hide it because it's closed, Linux can't because it's not.

      --
      Iran has endorsed
    5. Re:It's the wrong test. by alienw · · Score: 1

      I take it you've never actually tried to read someome else's source code. It's a very difficult, time-consuming task, and it's very likely that nobody would bother reading it. Looking at source code is not a sure-fire way to find bugs.

      Besides, the main concern is that state election officials would attempt to tamper with the results (since they generally belong to one of the parties). They can do that more easily if the software is open-source (add a backdoor, recompile, replace executable -- voila). How do you assure that the open-source code is what's actually being used?

      As far as spyware: making Windows open-source would not change anything. The problem with Windows is that it has a broken security model, not that it's closed-source. Linux has a much better security model and much less market share, so we don't see any spyware for it.

    6. Re:It's the wrong test. by Spoing · · Score: 1
      You don't need to read all of the source. A code audit can be focused. That said, if the code is not clear the audit can say so and force a re-write of the un-clear parts...making it both easier to debug (mistakes) and easier to catch and discourage any actual fraud.

      1. How do you assure that the open-source code is what's actually being used?

      The same way you would with closed source. It's not rocket science, just a lot of work involving independent investigators. As a member of the public that does vote I'd like to be one of those investigators and closed source puts one more barrier in the way of knowing what is true.

      One thin example of code accountability:

      code (checksum) ==> known public tool chain (checksum) ==> compile ==> checksum results. On audit, independently use the code and the exact same tool chain and compare them against the deployed systems. Prosecute anyone who screws around with the deployed systems.

      I've skipped many steps and most of the human engineering security issues, though I'd expect something like the above to be the bare minimum. Keep in mind that with something as serious as an election, everything -- from BIOS firmware through to the OS and supporting libraries -- is also in that 'code' block. That necessitates available source for everything -- even if some of the code is propriatory and not open for redistribution -- because anything that is a closed binary is much harder to check (though not impossible). If any part -- say, the parser in the compiler for one library -- is not available for auditing by the general public the whole system is potentially unreliable. (Though I admit that this is very situation dependant.)

      --
      A firewall can not protect you from yourself. Turn off what you do not need. Do not use the firewall to do your work.
    7. Re:It's the wrong test. by alienw · · Score: 1

      Your solution isn't open-sourcing the code, it's making the development process for those machines public. Basically, you want the state to develop the machines and do all kinds of security procedures to assure it's secure, and have a bunch of Slashdot nerds verify the machines. What you are proposing is not really possible to do, and would still have loopholes.

      My solution is to do it the old fashioned way, using paper. That way, it doesn't matter how the machines operate. If you choose Nader but the paper says you voted for Bush, you know something is wrong. Since the paper is what ultimately matters, it's secure.

    8. Re:It's the wrong test. by Spoing · · Score: 1

      You're not even close. Please go back and re-read what I actually did write and stop guessing what I meant. Thanks.

      --
      A firewall can not protect you from yourself. Turn off what you do not need. Do not use the firewall to do your work.
    9. Re:It's the wrong test. by ViolentGreen · · Score: 1

      While I agree with you post, I can't help but wonder how much of this electronic voting FUD is just fear-mongering or preperation by both sides to challange the result of the election.

      I hope to God that the recount debacle of 2000 doesn't set a precident for all future elections. I fully expect something similar to occur in a few weeks.

      --
      Not everything is analogous to cars. Car analogies rarely work.
    10. Re:It's the wrong test. by alienw · · Score: 1

      Well, let's see...

      Keep in mind that with something as serious as an election, everything -- from BIOS firmware through to the OS and supporting libraries -- is also in that 'code' block. That necessitates available source for everything -- even if some of the code is propriatory and not open for redistribution -- because anything that is a closed binary is much harder to check (though not impossible).

      Sounds like you want the source for everything to be available for redistribution, free of charge. That would necessitate building the system nearly from scratch. Since Diebold is out of the question (and they can't make money by selling something that's available for free), the state would have to do it. Then, you suggest that random people can then verify that the code is correct, and you also devise a scheme for verifying code integrity. Except that you haven't given thought to a whole bunch of things. Like who will run the system. Or why it would be more secure than it is currently. Or why it's even necessary.

      So, where did I misinterpret your argument?

  3. 50? by mpost4 · · Score: 1

    That is not enough to do a statistical test. it just a feel good, look it going to work bull shit.

  4. Small sample size? by Student_Tech · · Score: 1

    1 Machine and 50 votes, that's really small sample size. Wouldn't it be better to do something like 1% of the machines to be used (or 5 or 10%, just pick a number) and have the number of people expeceted to use the machine use it(or have lots more people then expected, just to make sure it can scale it the future)?

  5. Look is a pony show. by Anonymous Coward · · Score: 0

    I guess I shouldn't be surprised that their test didn't include someone trying to hack it. Last count that took a couple of minutes. It would have been faster, but the people "testing" it too the time to remove any evidence they'd done anything.

  6. Well... by Bluesman · · Score: 2, Insightful

    Holding the machine up to a zero-defect standard is the logical fallacy.

    Any voting system has potential for fraud, mistakes, etc. The issue should not be whether this system has that potential, but whether it's any better or worse than the current system, which isn't that great. You can't tell me that it's not within the realm of possibility for a purely mechanical machine to malfunction, or be rigged.

    If something bad doesn't happen with these new machines, I'd be very surprised. That would worry me far more than hearing about a perfect election with no mistakes, as that's evidence that someone is truly incompetent or lying.

    --
    If moderation could change anything, it would be illegal.
    1. Re:Well... by Anonymous Coward · · Score: 0

      Can't rig one mechanical machine to fix a million votes. You can't rig it in a couple of mintues and remove all trace of your trail. You can certify it's parts function properly. If it breaks, you're not facing an all or nothing proposition with the votes it rendered being lots, or worse, corrupted.

    2. Re:Well... by Detritus · · Score: 1

      I've used these machines in the past two elections. I didn't have any problems with them and I haven't heard any reports of problems with the machines.

      --
      Mea navis aericumbens anguillis abundat
  7. I am confused: by Thunderstruck · · Score: 2, Interesting

    Where does this intense desire to use an electronic voting system come from in the first place? What is the net result of pulling people away from the process? Withough vote counters and poll workers, will we eventually cause people to care even less about elections?

    Florida taught us one thing: News broadcasts showing jillions of people counting and recounting ballots can spur interest in the political process and get more people to vote.

    --
    Trying to use sarcasm in text-based forums does not work.
  8. Sure... by andreMA · · Score: 4, Insightful
    Humans counting 50 votes made "several errors"?

    Were they Diebold employees or something? That's simply not credible.

    1. Re:Sure... by Tyndmyr · · Score: 1
      Well, I couldnt find any specifics as to the nature of the error. I'll assume at least some were minor errors added to the count to make it appear more definitive.

      Besides, no one argued that machines do well with precision... I for one, dont worry about the machines screwing up, I worry about people screwing the machines up.

      --
      Support more choices in goverment-Vote 3rd party.
  9. Transparency, accountability...are missing by Spoing · · Score: 2, Insightful
    I disagree entirely. (If I didn't this wouldn't be ./)

    Point by point;

    1. Do you seriously think it's more difficult to rig an election if it uses open-source software? If anything, it makes it easier.

    That depends entirely on who is doing the rigging. The conspiracy theorists on the left think that Diabold has ties to the right wing and may assist in election fraud...covering over any issues with technical hand waving and hiding any of the real details.

    Having all parts of government -- including the electorial process -- open to examination in detail is key to ensuring that the conspiracy theorists are never right. For all we know now, elections are rigged everywhere. Closed computer systems just automate the process.

    Also, as anyone who knows how to harden systems in the field or monitor existing code knows never expect your tools to do your job . Having the source leads to the potential for absolute accountability, though if those systems aren't checked -- closed or open -- you've lost any assurance that things are working as you would expect.

    1. The ONLY real solution is to have machines print out OFFICIAL PAPER BALLOTS that the voter can check and put in a sealed ballot box and which can later be recounted by hand. This still enables the use of the electronic feature as a convenience. This is a simple and 100% effective solution.

    People make mistkes on paper all the time. That's what the dog and pony show in MD was staged to show...and they are right. What the Diabold system does not provide is complete transparency to the individual voter level let alone what the magic black boxes are actually doing. If *I* want to verify my vote, *I CAN'T* as a citizen do so with the current system. If President Carter wants to do the same, he can't either!

    Paper can be ignored. Vote counts can be changed. Electronic methods can make vote counting both more accurate and more prone to fraud...transparancy and accountability to such a level that any part can be questioned and examined are needed. We haven't had that and we won't have that with the Diabold system as it currently is. That's the problem.

    --
    A firewall can not protect you from yourself. Turn off what you do not need. Do not use the firewall to do your work.
    1. Re:Transparency, accountability...are missing by alienw · · Score: 2, Interesting

      The conspiracy theorists on the left think that Diabold has ties to the right wing and may assist in election fraud

      If you think Diebold does the rigging, you are an idiot. If they tried that and someone found out, they would be out of the voting machine business permanently. They have nothing to gain and everything to lose. Not to mention it's kind of hard to do, given how many variables there are. All they need to do is make a system with some backdoors, and they can be assured that the election will be rigged.

      The real danger here is that any state election official can tamper with the results. From what I've heard, Diebold basically uses Access to store stuff and anyone can modify it. The most likely rigging scenario is that some state employee will add/remove a few dozen extra votes from a couple of critical counties and change the outcome for that state. Sounds much more likely, doesn't it? Now tell me, how will open-sourcing the Diebold software prevent that?

      People make mistkes on paper all the time.

      No shit, Sherlock. That's why you have the machine print out the ballot with the choices filled in, and you verify it before casting it. If you are saying people make mistakes when recounting votes -- that doesn't matter if they are random mistakes and they don't happen very often. Besides, you can recount paper ballots with optical scanners -- haven't you ever taken a standardized test? Those machines are fairly simple and reliable.

    2. Re:Transparency, accountability...are missing by Spoing · · Score: 1
        1. The conspiracy theorists on the left think that Diabold has ties to the right wing and may assist in election fraud

        If you think Diebold does the rigging, you are an idiot.

      You quote me, but didn't read.

      1. The real danger here is that any state election official can tamper with the results. From what I've heard, Diebold basically uses Access to store stuff and anyone can modify it. The most likely rigging scenario is that some state employee will add/remove a few dozen extra votes from a couple of critical counties and change the outcome for that state. Sounds much more likely, doesn't it? Now tell me, how will open-sourcing the Diebold software prevent that?

      It won't if the system isn't auditable. Opening the source eliminates one more level of thins that can't currently be audited. (See my other post(s).)

      1. No shit, Sherlock.

      Necessary? Hmmm....

      1. That's why you have the machine print out the ballot with the choices filled in, and you verify it before casting it. If you are saying people make mistakes when recounting votes -- that doesn't matter if they are random mistakes and they don't happen very often. Besides, you can recount paper ballots with optical scanners -- haven't you ever taken a standardized test? Those machines are fairly simple and reliable.

      As you said before " The real danger here is that any state election official can tamper with the results. From what I've heard, Diebold basically uses Access to store stuff and anyone can modify it. The most likely rigging scenario is that some state employee will add/remove a few dozen extra votes from a couple of critical counties and change the outcome for that state. Sounds much more likely, doesn't it? Now tell me, how will open-sourcing the Diebold software prevent that?"

      During the recount phase, how do you know that the people counting and the systems being used haven't been compromised? Current systems are not adequate both on the human and tech sides.

      --
      A firewall can not protect you from yourself. Turn off what you do not need. Do not use the firewall to do your work.
    3. Re:Transparency, accountability...are missing by alienw · · Score: 1

      You still haven't answered my primary question: how exactly will an open-source voting system prevent voting fraud? I think we can agree that code auditing won't help matters much.

      During the recount phase, how do you know that the people counting and the systems being used haven't been compromised?

      Simple. You keep the process simple (no fancy computerized systems, etc -- just a manual recount). You send in representatives from both of the major parties to supervise the recount process. This has been done for decades.

    4. Re:Transparency, accountability...are missing by Jacius · · Score: 1

      First of all, while an open-source voting system *might* not prevent voting fraud, it *would* make it much easier to fix problems. Diebold's software is backward -- it suffers from stupid buffer overflows, unprotected databases, and other mistakes that a first-year CS major probably wouldn't even make.

      If you open-source the code, the hackers can fix it. The leaked Diebold code hadn't even fixed problems that were pointed out to them over 6 years ago by code inspection commitees (ie, Diebold offered to let potential clients have a peek at the source code before buying). They don't care about their software being *good*, only about being able to convince people to buy from them.

      Second, it's an easy task for a *single* election official to tamper with the election machine, and leave no records of the tampering behind. Given that many polling places will use over 100 people (not all of them rigorously screened) doing various things to keep the election running, the chances of one of them being motivated or persuaded (both major parties have plenty of money with which to bribe) are rather high. With paper ballots, you'd have to bribe an elected official and the security guards to look the other way whilst you shredded some ballots. It's much easier to just pose as a computer technician and use the buffer overflow trick with the smart-card reader to make the machine do whatever you want.

      Third, there are more than just two parties :P If some of the Nader votes are mysteriously transferred to one or both major parties, who would object?

      Of course, there are problems with the paper ballots, but fraud is just *so much easier* with these new-fangled electronic Diebold doo-dads.

    5. Re:Transparency, accountability...are missing by alienw · · Score: 1

      So, ultimately, the problem is that there is no paper trail. Which is what I have been saying in the first place.

  10. In Canada they vote on paper by qw3rty · · Score: 0, Troll

    In Canada they vote on paper and count the votes by hand. They have the votes counted by the next day.

    I'm certain Bush will win everywhere these machines are used.

    1. Re:In Canada they vote on paper by pease1 · · Score: 1
      I'm certain Bush will win everywhere these machines are used.

      The chances of Bush winning Maryland is almost nil. Registered Dems out number Reps 2 or 3 to 1. If Bush does take MD, it won't matter anyway because MD's puny E-college numbers won't mean anything.

    2. Re:In Canada they vote on paper by SpaceLifeForm · · Score: 1

      Please explain how 10 (ten) electoral votes won't mean anything. Especially in a close election with Diebold machines around.

      --
      You are being MICROattacked, from various angles, in a SOFT manner.
  11. I propose some different tests. by Anonymous Coward · · Score: 2, Insightful

    We need to test the system when it FAILS. Just sitting here on the shitter I came up with this test:

    1) set up two electronic voting machines. One works "normally" and another has been tampered with so that it sometimes records a vote that differs from the real votes. Don't reveal the probabilities or algorithm involved or which machine has been tampered with.

    2) Set up two punched-card ballot where the candidates have been mislabeled. Don't reveal how it has been mislabeled or which has been mislabeled.

    3) Perform votes on each.

    4) Count votes.

    5) Create a scandal: reveal that there was tampering. Ask the counters to perform an accurate re-count with this new information.

    With the punch card ballots, this is trivial. Check the correct layout of names, find which machine had names swapped, re-count knowing which names are correct.

    With the EVM, this is impossible. The machine has to be sent back to Diebold for examination. The hacker might've simply caused the machine to wipe all memory after 24 hours, hiding his algorithm completely. A closed-source third-party company gets to decide your election. Do you trust them?

  12. Precision vs. accuracy again. by MillionthMonkey · · Score: 4, Insightful

    after counting fifty votes, the human vote counters had made several errors versus zero for the voting machine.

    Did the humans make random errors (degrading precision), or errors tending to favor one candidate (worse, degrading accuracy)?

    This looks like a test of precision, not accuracy, and Maryland is confusing the two. I wrote a long post a few days ago in another story that's relevant to this one, and makes the point I'd want to make here, so I'll be a lamer and paste it.
    * * *
    The punch card system proved itself to be a very accurate method of vote counting, even under the extreme condition of a tie- to a precision of several hundred votes. Much attention was paid to the relatively few cards that had chads hanging, but the vast majority of the cards were quite unambiguous in their representation of the voter's intent. Unfortunately they occurred in equal numbers for both candidates. The entire system was at least as auditable as any vote counting system can possibly be.

    People don't understand the difference between precision and accuracy. Precision means that, given a measurable X, your measurements are sharply defined. But that is not the same as accuracy- which implies that the measurements actually reflect the true value of X, and not the influences of other sources of systematic error- like air resistance, or the thermal expansion of the ruler you're using, or the political affiliation of the manufacturer of your measuring equipment. A measurement is only accurate if sources of systematic error have been minimized. Sources of random error- like hanging chads- merely degrade precision.

    The outcry for computerized voting that followed the 2000 election- to "bring our elections into the 21st century" and similar nonsense- was most unfortunate. We are making the transition from an accurate but slightly imprecise system to a new system that promises only extreme precision with no guarantees of accuracy. What is worse, we are about to trade susceptibility to random error for something far worse- susceptibility to systematic error- which is fundamentally different from a human perspective since it introduces a huge motive for people to screw with the accuracy of the electoral process.

    The 2000 election had its share of systematic error. There was that butterfly ballot, which confused both Gore and Bush voters alike, but had the effect of transforming Bush votes into Bush votes and Gore votes into Buchanan votes. There was the Florida felon purge, which knocked thousands of blacks but only dozens of Cubans off the rolls. The 2000 election is still bitterly disputed, but very few people still complain about the hanging chads, which were sources of random error with relatively nonpartisan effects. The sources of systematic error had a much more corrosive effect- they cast doubt on the very legitimacy of the outcome, since they gave the election the appearance of having been stolen.

    I have no doubt that we have an ultraprecise election ahead of us- computers are good at being deterministic, after all- but as far as accuracy goes- we'll see. There are many who would love to insert some systematic error into those Access .MDB files. Election Day hasn't even arrived yet and already people have been busy introducing systematic error into the pool of registered voters. Even if the 2004 election involves pretty blinking lights, and is the most precise ever, it will undoubtedly be a less accurate measurement of the desires of the electorate than the election we had in 2000. This is what Stalin meant when he said that those who cast the votes decide nothing, and those who count the votes determine everything.

  13. Move to North Dakota by Thunderstruck · · Score: 1

    In North Dakota, we:

    1. Can't kill ourselves on the highways no matter how fast or drunk we get, there's nothing to hit.

    2. You almost never hear the word N*gg*r, around here we assume anyone with any pigment in their skin whatsoever is a graduate student.

    3. Would also let the KKK hold a peaceful rally with impunity (I think that's covered by the 1st amendment.) But we'd ask them to schedule it in the winter to generate heat.

    4. Allow write-in voting, and don't have any form of voter registration, (using instead any reasonable evidence of residence in the precinct,) so electronic voting machines are pretty unlikely.

    --
    Trying to use sarcasm in text-based forums does not work.
  14. Re:it's maryland, not the machines by Anonymous Coward · · Score: 0

    i forgot to finish this sentence: ... mouths quiet or they'd be KILLED (many of whom i've talked to and informed me about their 'status' when asked about the racism down here) ...

  15. It's been said a Thousand Times by SpamKu · · Score: 3, Insightful

    and I'll say it again.

    Without a Paper Trial, this system is not trustworthy.

    I hate Diebold for political reasons, but I'd still be OK with the system, even though Diebold makes it, if it had a paper trail the voter could see and the Board of Elections could use in the event of trouble.

    These people, OTOH, have a system I would trust:
    http://www.sequoiavote.com/

    This test was in a vacuum,so of course it wouldn't have any issues.

    I remain unconvinced of the security/reliability of paperless ballots, epecially Diebold.
    .

    --
    If I had a real .sig, it would go here.
  16. First, it's worse than you can imagine - these... by JimMarch(equalccw) · · Score: 5, Informative

    ...were tested in "test mode" versus "election mode".

    Yes, I'm serious. There's a software setting on the touchscreen to do one or the other.

    But that's OK, 'cuz the software in there is "certified" and subjected to code analysis by a test lab, right?

    Oooops. Diebold withheld thousands of lines of custom code in the voting terminals from review by declaring it "Commercial Off The Shelf" (COTS) software. Under FEC rules, "COTS" doesn't need serious scrutiny...but Windows CE at the terminal is NOT "COTS" despite Diebold's assertions otherwise - WinCE is a "software kit" that needs to be "finished" (mostly core drivers like video, etc) by the hardware manufacturer.

    Diebold.

    So hide a couple hundred lines of code somewhere that checks for the "election mode" versus "test mode" flag...

    For more on this WinCE issue including Diebold internal EMails discussing it:

    http://www.equalccw.com/sscomments2.html

    That's not even getting into how screwed up the central tabulator software is:

    http://www.equalccw.com/deandemo.html

    Ain't no WAY you can trust a Diebold system. Period.

    Jim March
    Member, Board of Directors, www.blackboxvoting.org

  17. Re:it's maryland, not the machines by nilram · · Score: 2, Interesting

    these backwater bastards are 99% pro-bush/pro-neocon/pro-racial purity who have nothing more than 4 more years of bush in their hearts.

    That's an interesting statement about a state that voted for Gore in 2000 and will almost certainly go to Kerry in 2004.

  18. Almost. by abb3w · · Score: 4, Insightful
    The issue should not be whether this system has that potential, but whether it's any better or worse than the current system, which isn't that great. You can't tell me that it's not within the realm of possibility for a purely mechanical machine to malfunction, or be rigged.

    The failure modes, however, should be considered using a metric weighted for both likelihood and impact of failure. A miscount is random; vulnerability to it is roughly equally likely to be for or against the candidate who would otherwise win. Sabotage on the other hand, where deliberate vote tampering occurs to a directed purpose, is highly likely to be for an undeserving candidate-- almost by definition. As such, I'd consider vulnerability to tampering a bigger problem than an equal probablility of a vote miscount. And the most effective way to reduce vulnerability to tampering is to increase transparancy to (multipartisan) human observers-- which the proposed electronic methods need to work on.

    I believe it is possible for electronic voting to allow for an improvement in both usability and security in the electoral process over current methods. I do NOT believe it represents that improvement yet.

    --
    //Information does not want to be free; it wants to breed.
  19. Re:it's maryland, not the machines by Anonymous Coward · · Score: 0

    well, you can probably thank annapolis and baltimore for that, and the dc area... wander away from those places and suddenly you realize how pretty your mouth is.

    SQUEAL LIKE A PIG, BOY!

  20. A better test by commodoresloat · · Score: 1

    They don't need to test whether these machines count properly or not. What they need to test is whether they result in the election of the proper candidate.

  21. Re:First, it's worse than you can imagine - these. by epcraig · · Score: 1

    I wonder if Diebold has considered people who will change banks becauses they have Diebold emblazoned on their vaults and ATMs. I did.

    --
    Ed Craig "Who cares what you think?" George W. Bush, 4th of July 2001
  22. Overstating computer reliability, yes by Media+Girl · · Score: 3, Interesting

    I mean things always happen. Just getting a new browser and email client have been months of hard work and debugging for the Mozilla developers.

    Personally, I'm skeptical. People are willing to kill over $10 in someone's pocket. Why wouldn't we believe that people will resort to things like election machine tampering when it affects who controls the most powerful nation on Earth?

    I'm not reassured by Diebold's CEO about "doing anything" to get Bush re-elected. But really, is a paper trail going to fix that?

    There is nothing preventing a system from printing one thing, and logging another. Any hand-counted discrepancies would be considered "human error" and discounted, anyway. And while a code audit may not be realistic, having the machine's code secret due to patent rights is just plain silly!

    Machines could be checked by a number of ways, including a sort of ghosting/registry check done by an independent agency supervised by the various parties. And so on.

    But then there's the need to hardened the machines to external manipulation. The casinos have been fighting this for years, and still people find ways to cheat.

    All we can do as citizens is keep fighting. The struggle for freedom will never go away, not even in the USA ... especially in the USA.

  23. More on random/systematic error(with #'s tossed in by kevinatilusa · · Score: 2, Interesting

    Imagine that some state has n ballots which are mistakenly marked, but are done so randomly, that is each one is 50% likely to be Democratic instead of Republican or vice versa (I'm simplifying things by using a 2-party system here, but the same argument would hold with more parties).

    Each time we miscount a Democratic Vote as a Republican, we mistakenly increase the Republican's margin by 2 votes. The reverse holds true when we miscount the other way. So the error in our margin can be thought of as the sum of n random numbers, each of which is equally likely to be 2 and -2. It is a known result from probability theory that such a "random walk" will be on (root mean square) average only about 2sqrt(n) steps away from 0. In other words, almost all the errors cancel!

    Florida had a 537-vote margin in 2000. For that margin to have a 50% chance of occuring would have required roughly 72,000 random errors in counting (probably more, since usually less than half of a set of data is above its Root mean square). On the other hand, a 600 vote sufficiently systematic error would have been plenty.

    This disparity only gets worse when we look at margins which would have been larger than 537 votes before error creeps in, but even at this level I'd be more worried about losing 600 votes by Fraud than having 72,000 of them miscounted.

  24. Re:I am confused by Randym · · Score: 1
    Where does this intense desire to use an electronic voting system come from in the first place?

    OK, I'll bite.

    It is much easier to steal an election if there is no way to recount the votes. Clear?

    It is much easier to avoid recounting the votes if you replace all the voting machines with new "efficient, electronic" machines that have no recount ability. Clear?

    It is much easier to replace all of the voting machines if you argue that this will "improve" voting for disabled people. Clear?

    It is much easier to sell the concept of electronic voting if you point out that the machines will be cheaper without each one having to have a printer. Clear?

    It is much easier to build cheaper machines if you have all of the new machines built by companies controlled by Republicans. Clear?

    Conclusion: Stealing elections by requiring people to vote on machines which leave no paper trail that were built by the party in power is the American Way!

    Clear?

    If this is not clear to you, pick up the book Black Box Voting by Bev Harris. She explains it better than I ever could.[Direct link to Amazon, not affiliate]

    --
    DNA is a Turing machine. You, however, being dynamic and emergent, are not.
  25. Re:More on random/systematic error(with #'s tossed by MillionthMonkey · · Score: 2, Insightful

    You can degrade accuracy by increasing precision.

    Say all the Democratic voting districts still vote on punchcards while the Republican suburbanites vote on their brand new ultraprecise Diebold machines. This gets rid of the random error in the Republican districts. However it converts the random error from hanging chads in the Democratic districts into systematic error favoring Republicans, since random walks toward Republican candidates in Democratic districts are no longer balanced by random walks toward Democratic candidates in Republican districts. If you're going to use Diebold machines, you'd better buy enough for everybody.

    Republicans are dispatching goons to polling places in poor neighborhoods to challenge the legitimacy of every voter who walks in the door. So this entire discussion is a bit academic.

  26. In Maryland they throw their ballots to the wind. by Crash+Culligan · · Score: 1
    I'm certain Bush will win everywhere these machines are used.
    The chances of Bush winning Maryland is almost nil. Registered Dems out number Reps 2 or 3 to 1. If Bush does take MD, it won't matter anyway because MD's puny E-college numbers won't mean anything.

    In a fair fight, yeah, Maryland would easily go to Kerry given its demographics and past voting history, despite voting for Nixon, Reagan's second term, and Bush Senior.

    (The widget hyperlinked above goes to the BBC. It's fun to play with, even despite it being Flash.)

    However, there are a few facts to keep in mind.

    1. Maryland is using electronic voting machines. So someone who wants to move a few votes around can do so thanks to the lackluster security on the back-end. That was discussed by the article, and it's been evident enough from shloads of stories over the past year or so.

    Now, the kicker: 2. How many Presidential tickets are there on the Maryland ballot? Would you believe six?!? And there are three write-ins available below those! Anyone who wants to do a little jiggery-pokery can certainly make the numbers look good. Shave a few votes off of Badnarik, and add them to Bush. Shave a few votes off of Kerry and add them to the Green ticket (Cobb/LaMarche) and the Populist ticket (Nader/Camejo). Heck, shave some of those votes off of Kerry and stick them on Bush. As long as nobody contests, and nobody goes overboard (like eliminating ALL of the Libertarian ballots as was done elsewhere once), there's no reason small numbers in changes would be suspect.

    Between all those options, the race could probably be thrown to either Bush or Kerry. And I have been seeing a lot of Bush/Cheney/Pipkin (senate) signs slapped around the roadways, so it's possible that there's enough support for Bush to make the skimfest proposed above work succeed.

    --
    You cannot truly appreciate Dilbert until you read it in the original Klingon.
  27. why this isnt covered in the media by drtomaso · · Score: 1

    I have been wondering why this hasnt been covered in the main-stream press, and more importantly why voters are not up in arms about this issue. As much as a conspiracy freak as I can get sometimes, I refuse to believe in a left or right wing conspiracy in the media. (I think there is an anti-administration/pro-scandal bias-compare media fervor over WMD intelligence and blue dress stain intelligence and you'll get my point)


    If we want to get the public's attention on this issue, we need one of the following to happen:


    • Survior contestants voted off the island using suspect, paper-trailless Diebold voting machines
    • Lacey Peterson Jury Verdict decided by vote over suspect, paper-trailless voting machines

    On this critical issue, I think we need to start petitioning producers of "Survivor" and the judge in the Lacey Peterson case- a simple effort on the part of either of these individuals could spare our nation the pain of another election scandal.