Ask Your Question

glaun's profile - activity

2022-05-21 23:58:24 +0200 received badge  Notable Question (source)
2019-08-22 15:31:27 +0200 received badge  Popular Question (source)
2013-10-29 14:48:54 +0200 received badge  Supporter (source)
2013-10-23 01:12:18 +0200 received badge  Organizer (source)
2013-10-23 01:11:52 +0200 asked a question How are free group homomorphisms implemented?

I see from the documentation that homomorphisms are implemented for matrix groups, symmetric groups, and abelian groups. I would assume that homomorphisms would be implemented for free groups, but I get an error if I do the following:

sage: F.<a,b> = FreeGroup(2)

sage: F.hom([a,b]) # Should be unique homomorphism with a |--> a, b |--> b

TypeError Traceback (most recent call last) ...

TypeError: Unable to coerce x (=[a, b]) to a morphism in Set of Morphisms from Free Group on generators {a, b} to Free Group on generators {a, b} in Category of groups

Do I have the syntax wrong, or are these not implemented?