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

Braid Group construction misses some relations #15505

Closed
miguelmarco opened this issue Dec 9, 2013 · 7 comments
Closed

Braid Group construction misses some relations #15505

miguelmarco opened this issue Dec 9, 2013 · 7 comments

Comments

@miguelmarco
Copy link
Contributor

Braid Groups are constructed over a finitely presented group, but not all relations are present:

sage: B=BraidGroup('a,b,c')
sage: B
Braid group on 4 strands
sage: B.relations()
(a*b*a*b^-1*a^-1*b^-1,)

CC: @vbraun @nathanncohen @fchapoton

Component: group theory

Keywords: braid groups

Author: Miguel Marco

Reviewer: Travis Scrimshaw

Merged: sage-5.13.rc0

Issue created by migration from https://trac.sagemath.org/ticket/15505

@tscrim
Copy link
Collaborator

tscrim commented Dec 9, 2013

comment:2

The if statement is always true since range(a, b) is [a, a+1, ..., b-2, b-1] (or you can think of it as the integer points in th internal [a, b)). So I think this should work:

for i in range(1, n):
    rels.append(free_group([i, i+1, i, -i-1, -i, -i-1]))
    for j in range(i+2, n+1):
        rels.append(free_group([i, j, -i, -j]))

@miguelmarco
Copy link
Contributor Author

comment:3

You are right. Here is a new patch.

@tscrim
Copy link
Collaborator

tscrim commented Dec 10, 2013

comment:4

Could you add a proper commit message? Once that's done, you can set this to positive review on my behalf. Thanks!

@tscrim
Copy link
Collaborator

tscrim commented Dec 10, 2013

Reviewer: Travis Scrimshaw

@tscrim
Copy link
Collaborator

tscrim commented Dec 10, 2013

Changed author from mmarco to Miguel Marco

@miguelmarco
Copy link
Contributor Author

Attachment: 15505_braid_rels.patch.gz

@jdemeyer
Copy link

Merged: sage-5.13.rc0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants