Monday, June 15, 2026
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
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS