Python sympy.crt()方法

Python sympy.crt()方法

sympy.crt()方法的帮助下,我们可以在SymPy中实现中国剩余定理。

语法: crt(m, v)

参数 :
m –它表示一个整数的列表。
v –它表示一个整数的列表。

返回:返回一个整数的元组,其中第一个元素是所需的结果。

示例 #1:

# import crt() method from sympy
from sympy.ntheory.modular import crt
  
m = [5, 7]
v = [1, 3]
  
# Use crt() method 
crt_m_v = crt(m, v) 
      
print("Result of the Chinese Remainder Theorem = {} ".format(crt_m_v[0]))

输出:

Result of the Chinese Remainder Theorem = 31 

示例 #2:

# import crt() method from sympy
from sympy.ntheory.modular import crt
  
m = [99, 97, 95]
v = [49, 76, 65]
  
# Use crt() method 
crt_m_v = crt(m, v) 
      
print("Result of the Chinese Remainder Theorem = {} ".format(crt_m_v[0]))

输出:

Result of the Chinese Remainder Theorem = 639985 

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程