Ask Your Question
1

Elements of a free group

asked 2022-01-11 20:57:01 +0200

bobby.mir gravatar image

updated 2022-01-11 20:58:49 +0200

My question is regarding the presentation of elements of the free group $F_2$.

G.<a,b,c> = FreeGroup()
G([1,1,2,-1,-3,2])

Then the result will be

a^2*b*a^-1*c^-1*b

Is there any command to get the array? I mean we give $a^2ba^-1c^-1b$ then it returns [1,1,2,-1,-3,2].

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
3

answered 2022-01-11 21:03:50 +0200

FrédéricC gravatar image

like this

sage: G.<a,b,c> = FreeGroup()
sage: h = G([1,1,2,-1,-3,2])
sage: h.Tietze()
(1, 1, 2, -1, -3, 2)
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

1 follower

Stats

Asked: 2022-01-11 20:57:01 +0200

Seen: 132 times

Last updated: Jan 11 '22