Processing math: 100%

First time here? Check out the FAQ!

Ask Your Question
2

Quotients of exterior algebras

asked 4 years ago

tkarn gravatar image

I am trying to take a quotient of an exterior algebra by a two-sided ideal, and having some trouble. As an easy case to understand the syntax, I tried to compute ΛQ[x,y,z]/(xy), where I would expect ¯x=¯y. However, it seems to not consider xbar and ybar the same.

sage: E.<x,y,z> = algebras.Exterior(QQ);
sage: I = E.ideal(x-y);
sage: Q = E.quo(I);
sage: xbar,ybar,zbar = Q.gens();
sage: xbar == ybar
False

I thought maybe that was fine because xbar and ybar are generators of the quotient so maybe there is some funkiness going on there. So then I tried to take the image of x and y under the quotient map and check if they are equal, but it still said they were not.

sage: q = Q.cover()
sage: q(x) == q(y)
False

Am I misunderstanding something in Sage? In the algebra of it? Both?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 4 years ago

tkarn gravatar image

updated 4 years ago

Ok it looks like this is the current (Sage 9.3beta8) behavior.

In the source code for Ideal_nc, which is the type of I, there is no implementation of a .reduce() method. Since Ideal_nc is a subclass of Ideal_generic it defaults to the Ideal_generic.reduce() method. But when Ideal_generic.reduce() is called it defaults to the identity:

    def reduce(self, f):
        r"""
        Return the reduction of the element of `f` modulo ``self``.

        This is an element of `R` that is equivalent modulo `I` to `f` where
        `I` is ``self``.

        EXAMPLES::

            sage: ZZ.ideal(5).reduce(17)
            2
            sage: parent(ZZ.ideal(5).reduce(17))
            Integer Ring
        """
        return f       # default

So this is asking if xbar and ybar are literally the same, which they are not.

Thanks to Travis Scrimshaw for pointing this out to me in private communication.

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

Stats

Asked: 4 years ago

Seen: 845 times

Last updated: Mar 21 '21