Open In App

Python | sympy rank() method

Improve
Improve
Like Article
Like
Save
Share
Report

With the help of sympy.combinatorics.Partition().rank method, we can get the rank of an array of subarrays that is passed as parameters in sympy.combinatorics.Partition().rank method.

Syntax : sympy.combinatorics.Partition().rank
Return : Return the rank of subarrays.

Example #1 :
In this example we can see that by using sympy.combinatorics.Partition().rank method, we are able to get the rank of array of subarrays.




# import sympy and Partition
from sympy.combinatorics.partitions import Partition
from sympy import * x, y = symbols('x y')
   
# Using sympy.combinatorics.partitions.Partition().rank method
gfg = Partition([1, 2], [4, 5, 6], [-12, -11])
   
print(gfg.rank)


Output :

119

Example #2 :




# import sympy and Relational
from sympy.combinatorics.partitions import Partition
from sympy import * x, y = symbols('x y')
   
# Using sympy.combinatorics.partitions.Partition().rank method
gfg = Partition([3], [1, 91], [2], [6])
  
print(gfg.rank)


Output :

47


Last Updated : 26 Aug, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads