15.06.2013 Views

Grupos de Permutações com o Maple

Grupos de Permutações com o Maple

Grupos de Permutações com o Maple

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

x := invperm(a); y := invperm(b);<br />

x := [[1, 4], [2, 3, 5]]<br />

y := [[1, 5, 3, 4, 2]]<br />

Agora calculamos os sinais dos elementos a e b. Pela resposta dada pelo programa, temos que a é<br />

ímpar e que b é par.<br />

> parity(a);<br />

> parity(b);<br />

−1<br />

Perguntamos agora se a e b são conjugados em G:<br />

> areconjugate(G, a, b);<br />

1<br />

false<br />

Finalmente, calculamos os produtos c = ab e d = ba e perguntamos se c pertence ao grupo G.<br />

> c: = mulperms(a, b); d := mulperms(b, a);<br />

> groupmember(c, G);<br />

c := [[1, 3, 4, 2]]<br />

d := [[1, 5, 4, 2]]<br />

true<br />

Exemplo 4.3 Neste exemplo <strong>de</strong>finimos inicialmente um grupo G subgrupo <strong>de</strong> S6 gerado por (1 2)(3 4),<br />

(1 4) e (5 6 1). Calculamos a or<strong>de</strong>m <strong>de</strong> G e escrevemo-la em forma fatorada: 2 4 3 2 5. Depois, <strong>de</strong>finimos<br />

H <strong>com</strong>o sendo um 2-Subgrupo <strong>de</strong> Sylow <strong>de</strong> G. A partir da expressão fatorada da or<strong>de</strong>m <strong>de</strong> G, é claro que<br />

a or<strong>de</strong>m <strong>de</strong> H é 2 4 = 16. Confirmamos isso listando todos os elementos <strong>de</strong> H e calculando sua or<strong>de</strong>m.<br />

Finalmente, verificamos que H não é normal em G.<br />

> with(group):<br />

> G := permgroup(6, {[[1, 2],[3, 4]], [[1, 4]], [[5, 6, 1]]});<br />

> groupor<strong>de</strong>r(G); # or<strong>de</strong>m <strong>de</strong> G<br />

> ifactor(%);<br />

> H := Sylow(G, 2);<br />

> groupor<strong>de</strong>r(H); # or<strong>de</strong>m <strong>de</strong> H<br />

> elements(H);<br />

G := permgroup(6, {[[1, 2], [3, 4]], [[1, 4]], [[5, 6, 1]]})<br />

720<br />

(2) 4 (3) 2 (5)<br />

H := permgroup(6, {[[2, 3], [5, 6]], [[3, 6]], [[1, 4], [2, 6, 5, 3]]})<br />

16<br />

{[ ], [[1, 4], [2, 5], [3, 6]], [[1, 4], [2, 3], [5, 6]], [[2, 3], [5, 6]], [[1, 4], [2, 3, 5, 6]], [[2, 3, 5, 6]],<br />

[[2, 6, 5, 3]], [[2, 5]], [[2, 5], [3, 6]], [[1, 4], [2, 6], [3, 5]], [[2, 6], [3, 5]], [[1, 4], [2, 5]], [[1, 4]],<br />

[[1, 4], [3, 6]], [[3, 6]], [[1, 4], [2, 6, 5, 3]]}<br />

> isnormal(G, H); # H é normal em G?

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!