Post
Topic
Board Development & Technical Discussion
Re: zero point of secp256k1
by
pooya87
on 21/12/2021, 04:57:55 UTC
I'm not sure about that, we can also write:
Code:
-1*G + 1*G = N*G
-2*G + 2*G = (-1*G - 1*G) + (1*G +1*G) = 2N*G
...
-k*G + k*G = N*K*G
FWIW in modular arithmetic we have compatibility with scaling (for any integer k):
Code:
A ≡ B (mod n)
kA ≡ kB (mod n)
In other words all the following values are in congruence relation:
Code:
0 ≡ N ≡ 2N ≡ 3N ≡ kN (mod N)