Saturday, October 25, 2025
HomeLanguagesSymPy | Permutation.is_even() in Python

SymPy | Permutation.is_even() in Python

Permutation.is_even() : is_even() is a sympy Python library function that checks whether the permutation is even.

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

Return : true – if the permutation is even; otherwise false

Code #1 : is_even() Example




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


Output :

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

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




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


Output :

Permutation a – is_even form : True

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

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS