Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Possibly wrong up projection in clifford.gac #425

Open
juzun opened this issue Jan 4, 2023 · 0 comments
Open

Possibly wrong up projection in clifford.gac #425

juzun opened this issue Jan 4, 2023 · 0 comments

Comments

@juzun
Copy link

juzun commented Jan 4, 2023

Your definition of up projection in clifford.gac is following:

def up(x):
    a = x[e1]
    b = x[e2]
    return a*e1 + b*e2 + 0.5*a**2*n1 + n1b + 0.5*b**2*n2 + n2b + a*b*n3

But this is according to some articles wrong (and it also doesn't work on some basic examples).
I'm referring to these papers: https://link.springer.com/chapter/10.1007/978-3-030-61864-3_41, https://link.springer.com/chapter/10.1007/978-3-030-22514-8_57.
In language of these papers, what you are using is:
image
but it should be this:
image

nx = e5+e8 
nxb = 0.5*(-e5+e8) 
nm = e4+e7 
nmb = 0.5*(-e4+e7)
n = e3+e6 
nb = 0.5*(-e3+e6)
def up(x):
    a = x[e1]
    b = x[e2]
    return nb + a*e1 + b*e2 + 1/2 * (a**2 + b**2)*n + 1/2 * (a**2 - b**2)*nm + a*b*nx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant