Saturday, September 6, 2025
HomeLanguagesSymPy | Permutation.max() in Python

SymPy | Permutation.max() in Python

Permutation.max() : max() is a sympy Python library function that returns the maximum value in the permutation.

Syntax : sympy.combinatorics.permutations.Permutation.max()

Return : maximum value in the permutation.

Code #1 : max() Example




# Python code explaining
# SymPy.Permutation.max()
  
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
  
# Using from sympy.combinatorics.permutations.Permutation.max() method 
  
# creating Permutation
a = Permutation([[2, 0], [3, 1]])
  
b = Permutation([1, 3, 5, 4, 2, 0])
  
  
print ("Permutation a - max form : ", a.max())
print ("Permutation b - max form : ", b.max())


Output :

Permutation a – max form : 3
Permutation b – max form : 5

Code #2 : max() Example – 2D Permutation




# Python code explaining
# SymPy.Permutation.max()
  
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
  
# Using from sympy.combinatorics.permutations.Permutation.max() method 
  
# creating Permutation
a = Permutation([[2, 4, 0], 
                 [3, 1, 2],
                 [1, 5, 6]])
  
  
print ("Permutation a - max form : ", a.max())


Output :

Permutation a – max form : 6

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11803 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6704 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS