当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python sympy.ff()用法及代码示例


借助于sympy.ff()方法,我们可以找到下降因子。下降阶乘定义为-

 ff(x, k) = x \cdot (x-1) \cdots (x-k+1)

其中x可以是任意表达式,k是整数。

用法: ff(x, k) 

参数:
x -它表示任何任意表达式。
k -它表示一个整数。

返回:返回与给定输入相对应的下降阶乘。

范例1:

# import sympy  
from sympy import * 
  
x = symbols('x') 
k = 5
print("Value of x = {} and k = {}".format(x, k)) 
   
# Use sympy.ff() method  
ff_x_k = ff(x, k)   
      
print("Falling factorial ff(x, k) : {}".format(ff_x_k))  

输出:

Value of x = x and k = 5
Falling factorial ff(x, k) : x*(x - 4)*(x - 3)*(x - 2)*(x - 1)

范例2:

# import sympy  
from sympy import * x = 7
k = 5
print("Value of x = {} and k = {}".format(x, k)) 
   
# Use sympy.ff() method  
ff_x_k = ff(x, k)   
      
print("Falling factorial ff(x, k) : {}".format(ff_x_k))  

输出:

Value of x = 7 and k = 5
Falling factorial ff(x, k) : 2520


相关用法


注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.ff() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。