Ask Your Question

anon2203's profile - activity

2023-05-31 02:30:03 +0200 received badge  Popular Question (source)
2021-11-13 16:52:16 +0200 commented answer Exponential in Clifford algebra

"Just run for t,c in A+B*i: print(t,c) and you'll see." Oh that's fancy.. I'm gonna like this software :)

2021-11-13 03:18:14 +0200 marked best answer Exponential in Clifford algebra

Hello, I am trying to take the exponential of A+B*i in Clifford algebra (isomorphic to the complex numbers) .

Code is:

sage: R.<A,B> = PolynomialRing(ZZ);
sage: Q = QuadraticForm(R,1,[-1]);
sage: Cl.<i> = CliffordAlgebra(Q);
sage: exp(A+B*i)*exp(A-B*i)

I would expect it to output exp(2*A), but it produces this error:

TypeError: cannot coerce arguments: no canonical coercion from The Clifford algebra of the Quadratic form in 1 variables over Multivariate Polynomial Ring in A, B over Integer Ring with coefficients: 
[ 1 ] to Symbolic Ring
2021-11-13 01:05:47 +0200 commented answer Exponential in Clifford algebra

Can you explain what c and t means in the function, and what for t,c in x do, with respect to x=A+B*i?

2021-11-13 01:03:54 +0200 commented answer Exponential in Clifford algebra

Can you explain what c and t means in the function, and what for t,c in x do?

2021-11-13 01:03:42 +0200 commented answer Exponential in Clifford algebra

Can you explain what t means in the function, and what for t,c in x do?

2021-11-13 01:03:36 +0200 commented answer Exponential in Clifford algebra

Can you explain what t means in the function, and what for t,c in x do?

2021-11-13 01:03:10 +0200 commented answer Exponential in Clifford algebra

Can you explain the function. I gather that you are using E as a 'dummy' variable and utilize the fact that A, Bi commut

2021-11-13 01:02:05 +0200 commented answer Exponential in Clifford algebra

Can you explain the function. I gather that you are using E as a 'dummy' variable and utilize the fact that A, Bi commut

2021-11-12 17:32:37 +0200 commented question Exponential in Clifford algebra

Works wonderfully... thank you. reset();Q = QuadraticForm(SR,1,[-1]);Cl.<i> = CliffordAlgebra(Q);a,b = var('a b')

2021-11-12 17:32:17 +0200 commented question Exponential in Clifford algebra

reset();Q = QuadraticForm(SR,1,[-1]);Cl. = CliffordAlgebra(Q);a,b = var('a b');a+b*i Works wonderfully... thank you. A

2021-11-12 17:32:04 +0200 commented question Exponential in Clifford algebra

reset();Q = QuadraticForm(SR,1,[-1]);Cl. = CliffordAlgebra(Q);a,b = var('a b');a+b*I Works wonderfully... thank you. A

2021-11-12 17:19:15 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez this guy... https://www.euclideanspace.com/maths/algebra/clifford/algebra/functions/exponent/index.htm giv

2021-11-12 16:58:39 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Its definable using the matrix exponential: https://en.wikipedia.org/wiki/Matrix_exponential (and the isom

2021-11-12 16:57:59 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Its definable using the matrix exponential: https://en.wikipedia.org/wiki/Matrix_exponential (and the isom

2021-11-12 16:57:46 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Its defined using the matrix exponential: https://en.wikipedia.org/wiki/Matrix_exponential (and the isomor

2021-11-12 16:49:38 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Its defined the same way as the matrix exponential: https://en.wikipedia.org/wiki/Matrix_exponential Als

2021-11-12 16:49:27 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Its defined the same way as the matrix exponential.https://en.wikipedia.org/wiki/Matrix_exponential Also

2021-11-12 16:49:00 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Its defined the same way as the matrix exponential.https://en.wikipedia.org/wiki/Matrix_exponential Also,

2021-11-12 16:48:37 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Its defined the same way as the matrix exponential.https://en.wikipedia.org/wiki/Matrix_exponential Also,

2021-11-12 16:47:51 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Its defined the same way as the matrix exponential.https://en.wikipedia.org/wiki/Matrix_exponential Also,

2021-11-12 16:47:17 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Its defined the same way as the matrix exponential.https://en.wikipedia.org/wiki/Matrix_exponential Also,

2021-11-12 16:45:25 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Its defined the same way as the matrix exponential.https://en.wikipedia.org/wiki/Matrix_exponential Also,

2021-11-12 16:44:43 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Its defined the same way as the matrix exponential.https://en.wikipedia.org/wiki/Matrix_exponential Also,

2021-11-12 15:35:21 +0200 marked best answer Symbolic variables with Clifford algebra

Hello, a similar question was asked previously, but I am unable to use multiple symbolic variables with the answer. What I would like to do is the following:

sage: Q = QuadraticForm(ZZ,2,[1,1,1])                                                                                                                              
sage: Cl.<x,y> = CliffordAlgebra(Q)

Then, I would like to define two symbolic a and b variables

sage: a*x+b*y

such that this output is produced:

sage: (a*x+b*y)*(a*x+b*y)
a^2+b^2

How do I declare a and b so that this is possible?


I have tried a, b = var('a b') but a*x gives an error

sage: a*x
TypeError: unsupported operand parent(s) for *: 'Symbolic Ring' and 'The Clifford algebra of the Quadratic form in 2 variables over Integer Ring with coefficients: 
[ 1 1 ]
[ * 1 ]'

I have also tried R.<a> = PolynomialRing(ZZ) and it works for 1 variable. But if I also tried to add b, it fails

sage: R.<a,b> = PolynomialRing(ZZ)
sage: a*x+b*y
TypeError: unsupported operand parent(s) for +: 'Multivariate Polynomial Ring in a, b over Integer Ring' and 'The Clifford algebra of the Quadratic form in 2 variables over Integer Ring with coefficients: 
[ 1 1 ]
[ * 1 ]'
2021-11-12 15:19:43 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Well, I just want A and B to be symbolic variables. In my mind A and B are elements of the reals. Using po

2021-11-12 15:12:43 +0200 commented question Exponential in Clifford algebra

@Max Well, I just want A and B to be symbolic variables. In my mind A and B are elements of the reals. Using polynomial

2021-11-12 15:08:17 +0200 commented question Exponential in Clifford algebra

@Max Well, I just want A and B to be symbolic variables. In my mind A and B are elements of the reals. Using polynomial

2021-11-12 15:07:21 +0200 commented question Exponential in Clifford algebra

@Max Well, I just want A and B to be symbolic variables. Using polynomial ring was suggested by a colleague on this site

2021-11-12 15:07:04 +0200 commented question Exponential in Clifford algebra

@Max Well, I just want A and B to be symbolic variables. Using polynomial ring was suggested by a colleague on this site

2021-11-12 15:06:07 +0200 commented question Exponential in Clifford algebra

@Max Well, I just want A and B to be symbolic variables. Using polynomial ring was suggested by a colleague on this site

2021-11-12 15:06:00 +0200 commented question Exponential in Clifford algebra

Well, I just want A and B to be symbolic variables. Using polynomial ring was suggested by a colleague on this site to m

2021-11-12 15:03:01 +0200 edited question Exponential in Clifford algebra

Exponential in Clifford algebra Hello, I am trying to take the exponential of A+B*i in Clifford algebra (isomorphic to t

2021-11-12 15:01:30 +0200 edited question Exponential in Clifford algebra

Exponential in Clifford algebra Hello, I am trying to take the exponential of A+B*i in Clifford algebra (isomorphic to t

2021-11-12 14:59:55 +0200 edited question Exponential in Clifford algebra

Exponential in Clifford algebra Hello, I am trying to take the exponential of A+B*i in Clifford algebra (isomorphic to t

2021-11-12 14:59:40 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Good question. What I want, really, is for this exp(A+B*i)*exp(A-B*i) to give exp(2*A) (I've edited the qu

2021-11-12 14:59:30 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Good question. What I want, really, is for this exp(A+Bi)*exp(A-Bi) to give exp(2A) (I've edited the quest

2021-11-12 14:59:25 +0200 edited question Exponential in Clifford algebra

Exponential in Clifford algebra Hello, I am trying to take the exponential of A+B*i in Clifford algebra (isomorphic to t

2021-11-12 14:58:47 +0200 received badge  Editor (source)
2021-11-12 14:58:47 +0200 edited question Exponential in Clifford algebra

Exponential in Clifford algebra Hello, I am trying to take the exponential of A+B*i in Clifford algebra (isomorphic to t

2021-11-12 14:58:10 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Good question. What I want, really, is for this exp(A+Bi)exp(A-Bi) to give exp(2A) (I've edited the questi

2021-11-12 14:57:29 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Good question. What I want, really, is for this exp(A+Bi)exp(A-Bi) to give exp(2A)

2021-11-12 14:57:16 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Good question. Want I want, really, is for this exp(A+Bi)exp(A-Bi) to give exp(2A)

2021-11-12 14:57:11 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Good question. Want I want, really, is for this exp(A+Bi)exp(A-Bi) to give exp(2A): sage: exp(A+Bi)exp

2021-11-12 14:56:45 +0200 commented question Exponential in Clifford algebra

@MaxAlekseyez Good question. Want I want, really, is for this exp(A+Bi)exp(A-Bi) to give exp(2A).

2021-11-12 14:56:33 +0200 commented question Exponential in Clifford algebra

Good question. Want I want, really, is for this exp(A+Bi)exp(A-Bi) to give exp(2A).

2021-11-12 14:41:07 +0200 asked a question Exponential in Clifford algebra

Exponential in Clifford algebra Hello, I am trying to take the exponential of A+B*i in Clifford algebra (isomorphic to t