Wednesday, June 10, 2026
HomeLanguagesSymPy | Permutation.is_Identity() in Python

SymPy | Permutation.is_Identity() in Python


Permutation.is_Identity() : is_Identity()
is a sympy Python library function that checks whether the Permutation is an identity permutation.

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

Return : true – if he Permutation is an identity permutation; otherwise false

Code #1 : is_Identity() Example




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


Output :

Permutation a – is_Identity form : False
Permutation b – is_Identity form : False

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




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


Output :

Permutation a – is_Identity form : False

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

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7018 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS