• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • C
        • Soft
        • Bv
        • Imp-language
        • Ethereum
        • Event-macros
        • Java
          • Atj
          • Aij
          • Language
            • Syntax
              • Grammar
              • Unicode-escapes
              • Unicode-input-char
              • Escape-sequence
              • Identifiers
              • Primitive-types
              • Reference-types
              • Unicode-characters
              • Keywords
              • Integer-literals
              • String-literals
              • Octal-digits
              • Hexadecimal-digits
              • Decimal-digits
              • Binary-digits
                • Bin-digit
                • Binary-digits-grammar-validation
                  • Grammar-bin-digitp
                  • Bin-digitp-when-grammar-bin-digitp
                    • Bin-digit-tree
                    • Grammar-bin-digitp-when-bin-digitp
                    • Bin-digitp-is-grammar-bin-digitp
                  • Bin-digit-value
                  • Bin-digit-list
                  • Binary-digits-std/strings-theorems
                • Character-literals
                • Null-literal
                • Floating-point-literals
                • Boolean-literals
                • Package-names
                • Literals
              • Semantics
          • Riscv
          • Bitcoin
          • Zcash
          • Yul
          • ACL2-programming-language
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Axe
          • Lists-light
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Binary-digits-grammar-validation

    Bin-digitp-when-grammar-bin-digitp

    Proof of bin-digitp from grammar-bin-digitp.

    This is proved via a lemma asserting that a terminated tree rooted at binary-digit has a string at the leaves whose only element satisfies bin-digitp (that this string is a singleton is proved in grammar-bin-digitp). The lemma is proved by exhaustively opening abnf-tree-with-root-p, which splits into cases corresponding to the alternatives of the binary-digit rule, thus prescribing the exact form of the tree in each case, and in particular its leaves. The theorem is then proved by instantiating the lemma to the witness tree of grammar-bin-digitp.

    Definitions and Theorems

    Theorem: bin-digitp-when-grammar-bin-digitp

    (defthm bin-digitp-when-grammar-bin-digitp
      (implies (grammar-bin-digitp x)
               (bin-digitp (car x))))