Conjugacy Classes
Overview
Teaching: 30 min
Exercises: 0 minQuestions
…
Objectives
…
cc = []
for i in range(4):
    for j in range(4):
        print("coset", i, j)
        print(g[i] * g[j] * g_inverse[i])
        print(g[j])
('coset', 0, 0)
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-1-5276f40c23db> in <module>()
  6 for j in range(Integer(4)):
  7 print("coset", i, j)
----> 8 print(g[i] * g[j] * g_inverse[i])
  9 print(g[j])
NameError: name 'g' is not defined
Key Points