• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • Proof-checker-array
      • Soft
      • C
      • Farray
      • Rp-rewriter
      • Riscv
      • Instant-runoff-voting
      • Imp-language
      • Sidekick
      • Leftist-trees
      • Java
      • Taspi
      • Bitcoin
      • Des
      • Ethereum
      • X86isa
      • Sha-2
      • Yul
      • Zcash
      • Proof-checker-itp13
      • Regex
      • ACL2-programming-language
      • Json
      • Jfkr
      • Equational
      • Cryptography
      • Poseidon
      • Where-do-i-place-my-book
      • Axe
      • Aleo
        • Aleobft
          • Correctness
            • Unequivocal-dags-def-and-init
            • Same-committees-def-and-implied
            • Dag-omni-paths
            • Signer-records
            • Unequivocal-dags-next
            • Quorum-intersection
            • Dag-previous-quorum-def-and-init-and-next
            • Unequivocal-signed-certificates
            • Signed-previous-quorum
            • Nonforking-anchors-def-and-init-and-next
            • Successor-predecessor-intersection
            • Fault-tolerance
            • Last-anchor-voters-def-and-init-and-next
            • Signer-quorum
            • Committed-redundant-def-and-init-and-next
            • Nonforking-blockchains-def-and-init
            • Blockchain-redundant-def-and-init-and-next
            • No-self-endorsed
            • Last-anchor-present
            • Anchors-extension
            • Nonforking-blockchains-next
            • Backward-closure
            • Last-blockchain-round
            • Dag-certificate-next
            • Omni-paths-def-and-implied
            • Ordered-blockchain
            • Simultaneous-induction
              • Invariants-of-events-next
              • System-certificates
              • Last-anchor-def-and-init
              • Last-anchor-next
              • Dag-previous-quorum
              • Signed-certificates
              • Committed-anchor-sequences
              • Omni-paths
              • Last-anchor-voters
              • Unequivocal-dags
              • Nonforking-blockchains
              • Nonforking-anchors
              • Committed-redundant
              • Same-committees
              • Blockchain-redundant
            • Definition
            • Library-extensions
          • Aleovm
          • Leo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Community
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Simultaneous-induction

    Invariants-of-events-next

    Preservation of a number of invariants by any sequence of zero or more events.

    This is proved by simultaneous induction, involving all of the invariants.

    A critical assumption is fault tolerance: all the committees that arise during the execution must be fault-tolerant.

    Definitions and Theorems

    Theorem: invariants-of-events-next

    (defthm invariants-of-events-next
     (implies
          (and (all-system-committees-fault-tolerant-p systate events)
               (backward-closed-p systate)
               (last-blockchain-round-p systate)
               (ordered-blockchain-p systate)
               (signed-previous-quorum-p systate)
               (no-self-endorsed-p systate)
               (signer-records-p systate)
               (unequivocal-signed-certs-p systate)
               (signer-quorum-p systate)
               (unequivocal-dags-p systate)
               (nonforking-blockchains-p systate)
               (same-committees-p systate)
               (dag-previous-quorum-p systate)
               (last-anchor-present-p systate)
               (last-anchor-voters-p systate)
               (omni-paths-p systate)
               (nonforking-anchors-p systate)
               (committed-redundant-p systate)
               (blockchain-redundant-p systate)
               (events-possiblep events systate))
          (and (backward-closed-p (events-next events systate))
               (last-blockchain-round-p (events-next events systate))
               (ordered-blockchain-p (events-next events systate))
               (signed-previous-quorum-p (events-next events systate))
               (no-self-endorsed-p (events-next events systate))
               (signer-records-p (events-next events systate))
               (unequivocal-signed-certs-p (events-next events systate))
               (signer-quorum-p (events-next events systate))
               (unequivocal-dags-p (events-next events systate))
               (nonforking-blockchains-p (events-next events systate))
               (same-committees-p (events-next events systate))
               (dag-previous-quorum-p (events-next events systate))
               (last-anchor-present-p (events-next events systate))
               (last-anchor-voters-p (events-next events systate))
               (omni-paths-p (events-next events systate))
               (nonforking-anchors-p (events-next events systate))
               (committed-redundant-p (events-next events systate))
               (blockchain-redundant-p (events-next events systate)))))