• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • 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
        • Soft
        • C
        • Bv
        • Imp-language
        • Event-macros
        • Java
        • Bitcoin
        • Ethereum
        • Yul
        • Zcash
        • ACL2-programming-language
        • Prime-fields
        • Json
        • Syntheto
        • File-io-light
        • Cryptography
          • R1cs
          • Interfaces
          • Sha-2
          • Keccak
          • Kdf
          • Mimc
          • Padding
          • Hmac
          • Elliptic-curves
            • Secp256k1-attachment
            • Twisted-edwards
            • Montgomery
            • Short-weierstrass-curves
            • Birational-montgomery-twisted-edwards
            • Has-square-root?-satisfies-pfield-squarep
            • Secp256k1
            • Secp256k1-domain-parameters
            • Secp256k1-types
            • Pfield-squarep
            • Secp256k1-interface
            • Prime-field-extra-rules
            • Points
              • Pointp
              • Point-in-pxp-p
              • Points-fty
                • Point-finite
                • Point
                • Point-kind
                • Point-finite->y
                • Point-finite->x
                • Point-infinite
                  • Point-fix
            • Attachments
            • Elliptic-curve-digital-signature-algorithm
          • Number-theory
          • Lists-light
          • Axe
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Points-fty

    Point-infinite

    Build the elliptic curve point at infinity.

    Signature
    (point-infinite) → p
    Returns
    p — Type (pointp p).

    Definitions and Theorems

    Function: point-infinite

    (defun point-infinite nil
      (declare (xargs :guard t))
      (let ((acl2::__function__ 'point-infinite))
        (declare (ignorable acl2::__function__))
        ':infinity))

    Theorem: pointp-of-point-infinite

    (defthm pointp-of-point-infinite
      (b* ((p (point-infinite))) (pointp p))
      :rule-classes :rewrite)

    Theorem: point-kind-of-point-infinite

    (defthm point-kind-of-point-infinite
      (equal (point-kind (point-infinite))
             :infinite))

    Theorem: point-fix-when-infinite

    (defthm point-fix-when-infinite
      (implies (equal (point-kind p) :infinite)
               (equal (point-fix p) (point-infinite))))

    Theorem: equal-of-point-infinite

    (defthm equal-of-point-infinite
      (equal (equal (point-infinite) p)
             (and (pointp p)
                  (equal (point-kind p) :infinite))))