Thursday, December 11, 2025
HomeLanguagesSymPy | Permutation.is_Singleton() in Python

SymPy | Permutation.is_Singleton() in Python

Permutation.is_Singleton() : is_Singleton() is a sympy Python library function that checks whether the permutation contains only one single element.

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

Return : true – if permutation is having only one element; otherwise false

Code #1 : is_Singleton() Example




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


Output :

Permutation a – is_Singleton form : False
Permutation b – is_Singleton form : True

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




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


Output :

Permutation a – is_Singleton form : False

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

Most Popular

Dominic
32443 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6813 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12025 POSTS0 COMMENTS
Shaida Kate Naidoo
6944 POSTS0 COMMENTS
Ted Musemwa
7196 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6881 POSTS0 COMMENTS