Ask Your Question
0

symbolic constant in clifford algebra

asked 2016-06-13 15:01:50 +0200

davidvanovereem gravatar image

updated 2022-10-06 20:15:29 +0200

FrédéricC gravatar image

Dear all,

First of all I'd like to state that I am far from a SageMath expert. Right now, I am working on Clifford algebra's and I would like to do some computations with SageMath Cloud. Unfortunately, I experience the problem that when I define a symbolic constant, Sage doesn't know how to multiply this with elements in the Clifford algebra. This is the code that I'm using.

START CODE

C = ComplexField();

sage: Q = QuadraticForm(C, 3, [0,0,1,1,0,0])

sage: Cl.<x,y,z> = CliffordAlgebra(Q)

var('e')

e*x

END CODE

I get an error for ex: ''unsupported operand parent(s) for '': 'Symbolic Ring' and 'The Clifford algebra of the Quadratic form in 3 variables over Complex Field with 53 bits of precision with coefficients:''

Does anyone maybe know how to work around this? Maybe I am defining the variable all wrong?

Thank you very much!

Kind regards,

David

edit retag flag offensive close merge delete

Comments

Could you tell who is supposed to be e (mathematically) ?

tmonteil gravatar imagetmonteil ( 2016-06-13 16:32:11 +0200 )edit

thanks for your comment tmonteil! e is supposed to be just some constant in C.

davidvanovereem gravatar imagedavidvanovereem ( 2016-06-13 18:49:29 +0200 )edit

1 Answer

Sort by » oldest newest most voted
0

answered 2016-06-13 23:43:15 +0200

tmonteil gravatar image

It is not clear to me what do you plan to do with such product, so i fear there is no good answer to your question, perhaps could you try to be more precise on your goals.

That said, when dealing with algebraic objects, a classical trick is to use polynomial indeterminates instead of symbols. In your case, it could be something like:

sage: R.<e> = PolynomialRing(C)
sage: R
Univariate Polynomial Ring in e over Complex Field with 53 bits of precision
sage: e*x
x*e
edit flag offensive delete link more

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: 2016-06-13 15:01:50 +0200

Seen: 608 times

Last updated: Jun 13 '16