【问题标题】:what is the differnce in a grapich when I use (mod p), for example the difference between y=x and y=x (mod 3)当我使用 (mod p) 时,图形有什么区别,例如 y=x 和 y=x (mod 3) 之间的区别
【发布时间】:2019-02-23 18:07:49
【问题描述】:

我正在研究椭圆曲线密码学,用于比特币核心的部分secp256k1,它使用mod p。strong text

【问题讨论】:

    标签: math cryptography computer-science blockchain bitcoin


    【解决方案1】:

    当您尝试找到一个数的模 3 时,实际上是在尝试将其除以 3 时找到该数的余数。(例如 38 mod 3 == 3(12) + 2 mod 3 == 2)

    当你绘制 y = x 时,你应该得到你在代数 1 中学习的标准图。当你绘制 y = x mod 3 时,你应该得到一个循环,其中 y 从 0 增加到 3,然后重新设置为 0(每 3 个)

    【讨论】:

    • 如果 y=x mod 3,y 的范围是 0 到 2。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-11-16
    • 2017-12-31
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多