• 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
          • Jubjub
            • Jubjub-abst
            • Jubjub-r-pointp
            • Jubjub-pointp
            • Jubjub-d
            • Jubjub-montgomery
            • Maybe-jubjub-pointp
            • Jubjub-point->u
            • Jubjub-q
            • Jubjub-point->v
            • Point-on-jubjub-p
            • Jubjub-rstar-pointp
            • Jubjub-add
            • Jubjub-r-properties
              • Not-jubjub-r-pointp-when-0-ordinate
              • Jubjub-r-doubling-injectivity
              • Point-0-m1
                • Not-jubjub-r-pointp-of-jubjub-r-point-with-neg-ordinate
                • Not-jubjub-r-pointp-when-lower-order
                • Jubjub-r-doubling-of-nonzero-is-nonzero
                • Jubjub-point->u-injective-on-jubjub-r-pointp
              • Jubjub-point-abscissa-is-not-1
              • Jubjub-mul
              • Jubjub-curve
              • Jubjub-a
              • Jubjub-neg
              • Jubjub-r
              • Jubjub-point-satisfies-curve-equation
              • Jubjub-h
              • Jubjub-mul-of-2
              • *jubjub-l*
            • Verify-zcash-r1cs
            • Lift-zcash-r1cs
            • Pedersen-hash
            • Zcash-gadgets
            • Bit/byte/integer-conversions
            • Constants
            • Blake2-hash
            • Randomness-beacon
          • ACL2-programming-language
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Lists-light
          • Axe
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Jubjub-r-properties

    Point-0-m1

    The point (0,-1).

    Signature
    (point-0-m1) → *

    This point is not in jubjub-r-pointp, because it is not zero and doubling it yields zero (so it cannot have order jubjub-r). This point plays a role in the proofs of other properties about jubjub-r-pointp.

    This is part of Theorem 5.4.3 in [ZPS].

    Definitions and Theorems

    Function: point-0-m1

    (defun point-0-m1 nil
      (declare (xargs :guard t))
      (let ((__function__ 'point-0-m1))
        (declare (ignorable __function__))
        (ecurve::point-finite 0 (1- (jubjub-q)))))

    Theorem: point-0-m1-not-zero

    (defthm point-0-m1-not-zero
      (not (equal (point-0-m1)
                  (twisted-edwards-zero))))

    Theorem: 2-point-0-m1-is-zero

    (defthm 2-point-0-m1-is-zero
      (equal (jubjub-mul 2 (point-0-m1))
             (twisted-edwards-zero)))

    Theorem: point-0-m1-not-in-jubjub-r

    (defthm point-0-m1-not-in-jubjub-r
      (not (jubjub-r-pointp (point-0-m1))))