Saturday, October 11, 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
32350 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6720 POSTS0 COMMENTS
Nicole Veronica
11882 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6839 POSTS0 COMMENTS
Ted Musemwa
7101 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS