Is there a computer software that can compute Automorphism Groups. For instance $Aut(\mathbb{Z}_4\times\mathbb{Z}_2)$.
I tried Sage, but could not get it to work.
Output:
G = CyclicPermutationGroup(4)
3
H = CyclicPermutationGroup(2)
4
D=G.direct_product(H)
5
D.automorphism_group()
6
Error in lines 4-4
Traceback (most recent call last):
File "/projects/0aeca2d0-1a41-47c7-b462-f4a4432bfbf3/.sagemathcloud/sage_server.py", line 881, in execute
exec compile(block+'\n', '', 'single') in namespace, locals
File "", line 1, in <module>
AttributeError: 'tuple' object has no attribute 'automorphism_group'
Thanks for any help!
It is quite straightforward with GAP:
Hopefully someone will also show how to do this in SageMath.