Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
2

Calculations in quotient of a free algebra

asked 7 years ago

Jo Be gravatar image

updated 2 years ago

tmonteil gravatar image

I want to define (the algebra part of) Sweedler's four-dimensional Hopf algebra, which is freely generated by x,y and subject to the relations x2=1,y2=0,xy=yx , but I don't see how to do it.

I have tried the following:

sage: A.<x,y> = FreeAlgebra(QQbar)
sage: I = A*[x*x - 1, y*y, x*y + y*x]*A
sage: H.<x,y> = A.quo(I)
sage: H
Quotient of Free Algebra on 2 generators (x, y) over Algebraic Field by the ideal (-1 + x^2, y^2, x*y + y*x)

But then I get

sage: H.one() == H(x*x)
False

So is this currently possibly using a different method?

Thanks

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
1

answered 7 years ago

tmonteil gravatar image

This is definitely a bug, thanks for reporting ! This is now trac ticket 24808.

Preview: (hide)
link

Comments

Thank you for adding the ticket!

Jo Be gravatar imageJo Be ( 7 years ago )
1

answered 7 years ago

Jo Be gravatar image

updated 7 years ago

I know now that we can do the following:

sage: A = FreeAlgebra(QQbar, 3, "a")
sage: F = A.monoid()
sage: M = MatrixSpace(QQbar,4)
sage: x, y, xy = F.gens()
sage: mons = [F(1), x, y, xy]
sage: mats = [ 
....:        M([ 0, 1, 0, 0,   1, 0, 0, 0,   0, 0, 0, -1,   0, 0, -1, 0 ]),    
....:        M([ 0, 0, 1, 0,   0, 0, 0, 1,   0, 0, 0, 0,   0, 0, 0, 0]),    
....:        M([ 0, 0, 0, 1,   0, 0, 1, 0,   0, 0, 0, 0,   0, 0, 0, 0 ])
....: ]
sage: H.<x,y,xy> = FreeAlgebraQuotient(A,mons,mats); H
Free algebra quotient on 3 generators ('x', 'y', 'xy') and dimension 4 over Algebraic Field

And we can verify

sage: x^2
1
sage: y^2
0
sage: x*y
xy
sage: y*x
-xy

Note: We cannot take tensor products, but that is not what I originally asked for, so.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 7 years ago

Seen: 676 times

Last updated: Feb 22 '18