Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 pari/GP 执行中国剩余定理,结果是intmod.
intmod
例子:
x = Mod(25, 33)
x是中国剩余定理的输出。
x
但我想比较 24 和x.
如何从中提取“25”x以便能够将其与常规进行比较int?
int
? x == 24 %1 = 0
lift(x)