Thursday, October 9, 2025
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
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6712 POSTS0 COMMENTS
Nicole Veronica
11876 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS