Ë
    7^(hº   ã                   óp   — d dl mZ d dlmZ d dlmZ ej                  Zd„ Zd„ Zd„ Z	d„ Z
d„ Zd	„ Zd
„ Zd„ Zy)é    )ÚDirectProduct)ÚPermutationGroup)ÚPermutationc                  ó¢   — g }d}d}| D ]&  }||z  }||z  }|j                  t        |«      «       Œ( t        |Ž }d|_        ||_        ||_        |S )a°  
    Returns the direct product of cyclic groups with the given orders.

    Explanation
    ===========

    According to the structure theorem for finite abelian groups ([1]),
    every finite abelian group can be written as the direct product of
    finitely many cyclic groups.

    Examples
    ========

    >>> from sympy.combinatorics.named_groups import AbelianGroup
    >>> AbelianGroup(3, 4)
    PermutationGroup([
            (6)(0 1 2),
            (3 4 5 6)])
    >>> _.is_group
    True

    See Also
    ========

    DirectProduct

    References
    ==========

    .. [1] https://groupprops.subwiki.org/wiki/Structure_theorem_for_finitely_generated_abelian_groups

    r   é   T)ÚappendÚCyclicGroupr   Ú_is_abelianÚ_degreeÚ_order)Úcyclic_ordersÚgroupsÚdegreeÚorderÚsizeÚGs         ú^/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/sympy/combinatorics/named_groups.pyÚAbelianGroupr      sl   € ðB €FØ€FØ€EØò )ˆØ�$‰ˆØ�‰ˆØ�‰”k $Ó'Õ(ð)ô 	�vÐ€AØ€A„MØ€A„IØ€A„Hà€Hó    c                 óþ  — | dv rt        t        dg«      g«      S t        t        | «      «      }|d   |d   |d   c|d<   |d<   |d<   |}| dz  r)t        t        d| «      «      }|j	                  d«       |}n:t        t        d| «      «      }|j	                  d«       |j                  dd«       |}||g}||k(  r|dd }t        |D �cg c]  }t        |«      ‘Œ c}d¬«      }t        || | «       d|_        |S c c}w )	a=  
    Generates the alternating group on ``n`` elements as a permutation group.

    Explanation
    ===========

    For ``n > 2``, the generators taken are ``(0 1 2), (0 1 2 ... n-1)`` for
    ``n`` odd
    and ``(0 1 2), (1 2 ... n-1)`` for ``n`` even (See [1], p.31, ex.6.9.).
    After the group is generated, some of its basic properties are set.
    The cases ``n = 1, 2`` are handled separately.

    Examples
    ========

    >>> from sympy.combinatorics.named_groups import AlternatingGroup
    >>> G = AlternatingGroup(4)
    >>> G.is_group
    True
    >>> a = list(G.generate_dimino())
    >>> len(a)
    12
    >>> all(perm.is_even for perm in a)
    True

    See Also
    ========

    SymmetricGroup, CyclicGroup, DihedralGroup

    References
    ==========

    .. [1] Armstrong, M. "Groups and Symmetry"

    )r   é   r   r   r   NF)ÚdupsT)	r   r   ÚlistÚranger   ÚinsertÚ_af_newÚ set_alternating_group_propertiesÚ_is_alt)ÚnÚaÚgen1Úgen2Úgensr   s         r   ÚAlternatingGroupr$   8   s  € ðL 	ˆF�{Ü¤¨a¨SÓ!1Ð 2Ó3Ð3äŒU�1‹X‹€AØ˜‘t˜Q˜q™T 1 Q¡4Ð€A€a�Dˆ!ˆA‰$��!‘Ø€DØˆ1‚uÜ”�q˜!“ÓˆØ	�‰�ŒØ‰ä”�q˜!“ÓˆØ	�‰�ŒØ	�‰��AŒØˆØ�$ˆ<€DØˆt‚|Ø�B�QˆxˆÜ¨dÖ3¨œ' !�*Ò3¸%Ô@€Aä$ Q¨¨1Ô-Ø€A„IØ€Hùò	 4s   Ã	C:c                 óš   — |dk  rd| _         d| _        nd| _         d| _        |dk  rd| _        nd| _        || _        d| _        d| _        y)z.Set known properties of an alternating group. é   TFé   N©r
   Ú_is_nilpotentÚ_is_solvabler   Ú_is_transitiveÚ_is_dihedral©r   r   r   s      r   r   r   w   sP   € àˆ1‚uØˆŒØˆ�àˆŒØˆŒØˆ1‚uØˆ�àˆŒØ€A„IØ€AÔØ€A…Nr   c                 óè   — t        t        d| «      «      }|j                  d«       t        |«      }t	        |g«      }d|_        d|_        d|_        | |_        d|_	        | |_
        | dk(  |_        |S )a»  
    Generates the cyclic group of order ``n`` as a permutation group.

    Explanation
    ===========

    The generator taken is the ``n``-cycle ``(0 1 2 ... n-1)``
    (in cycle notation). After the group is generated, some of its basic
    properties are set.

    Examples
    ========

    >>> from sympy.combinatorics.named_groups import CyclicGroup
    >>> G = CyclicGroup(6)
    >>> G.is_group
    True
    >>> G.order()
    6
    >>> list(G.generate_schreier_sims(af=True))
    [[0, 1, 2, 3, 4, 5], [1, 2, 3, 4, 5, 0], [2, 3, 4, 5, 0, 1],
    [3, 4, 5, 0, 1, 2], [4, 5, 0, 1, 2, 3], [5, 0, 1, 2, 3, 4]]

    See Also
    ========

    SymmetricGroup, DihedralGroup, AlternatingGroup

    r   r   Tr   )r   r   r   r   r   r
   r)   r*   r   r+   r   r,   )r   r    Úgenr   s       r   r	   r	   ˆ   so   € ô< 	ŒU�1�a‹[Ó€AØ‡H�HˆQ„KÜ
�!‹*€CÜ˜#˜Ó€Aà€A„MØ€A„OØ€A„NØ€A„IØ€AÔØ€A„HØ˜1‘f€A„NØ€Hr   c                 ó  — | dk(  rt        t        ddg«      g«      S | dk(  r/t        t        g d¢«      t        g d¢«      t        g d¢«      g«      S t        t        d| «      «      }|j	                  d«       t        |«      }t        t        | «      «      }|j                  «        t        |«      }t        ||g«      }| | dz
  z  dk(  rd|_        nd|_        d|_        d|_	        d|_
        | |_        d|_        d| z  |_        |S )	a€  
    Generates the dihedral group `D_n` as a permutation group.

    Explanation
    ===========

    The dihedral group `D_n` is the group of symmetries of the regular
    ``n``-gon. The generators taken are the ``n``-cycle ``a = (0 1 2 ... n-1)``
    (a rotation of the ``n``-gon) and ``b = (0 n-1)(1 n-2)...``
    (a reflection of the ``n``-gon) in cycle rotation. It is easy to see that
    these satisfy ``a**n = b**2 = 1`` and ``bab = ~a`` so they indeed generate
    `D_n` (See [1]). After the group is generated, some of its basic properties
    are set.

    Examples
    ========

    >>> from sympy.combinatorics.named_groups import DihedralGroup
    >>> G = DihedralGroup(5)
    >>> G.is_group
    True
    >>> a = list(G.generate_dimino())
    >>> [perm.cyclic_form for perm in a]
    [[], [[0, 1, 2, 3, 4]], [[0, 2, 4, 1, 3]],
    [[0, 3, 1, 4, 2]], [[0, 4, 3, 2, 1]], [[0, 4], [1, 3]],
    [[1, 4], [2, 3]], [[0, 1], [2, 4]], [[0, 2], [3, 4]],
    [[0, 3], [1, 2]]]

    See Also
    ========

    SymmetricGroup, CyclicGroup, AlternatingGroup

    References
    ==========

    .. [1] https://en.wikipedia.org/wiki/Dihedral_group

    r   r   r   )r   r   é   r   )r   r1   r   r   )r1   r   r   r   TF)r   r   r   r   r   r   Úreverser)   r,   r
   r*   r   r+   r   )r   r    r!   r"   r   s        r   ÚDihedralGroupr3   µ   sù   € ðR 	ˆA‚vÜ¤¨a°¨VÓ!4Ð 5Ó6Ð6ØˆA‚vÜ¤ª\Ó!:Üš<Ó(¬+²lÓ*Cð!Eó Fð 	Fô 	ŒU�1�a‹[Ó€AØ‡H�HˆQ„KÜ�1‹:€DÜŒU�1‹X‹€AØ‡I�I„KÜ�1‹:€DÜ˜$ ˜Ó&€AàˆAˆa‰C�y�A‚~Øˆ�àˆŒØ€A„NØ€A„MØ€A„NØ€A„IØ€AÔØ�‰s€A„HØ€Hr   c                 ó|  — | dk(  rt        t        dg«      g«      }n‹| dk(  rt        t        ddg«      g«      }nnt        t        d| «      «      }|j	                  d«       t        |«      }t        t        | «      «      }|d   |d   c|d<   |d<   t        |«      }t        ||g«      }t        || | «       d|_        |S )aL  
    Generates the symmetric group on ``n`` elements as a permutation group.

    Explanation
    ===========

    The generators taken are the ``n``-cycle
    ``(0 1 2 ... n-1)`` and the transposition ``(0 1)`` (in cycle notation).
    (See [1]). After the group is generated, some of its basic properties
    are set.

    Examples
    ========

    >>> from sympy.combinatorics.named_groups import SymmetricGroup
    >>> G = SymmetricGroup(4)
    >>> G.is_group
    True
    >>> G.order()
    24
    >>> list(G.generate_schreier_sims(af=True))
    [[0, 1, 2, 3], [1, 2, 3, 0], [2, 3, 0, 1], [3, 1, 2, 0], [0, 2, 3, 1],
    [1, 3, 0, 2], [2, 0, 1, 3], [3, 2, 0, 1], [0, 3, 1, 2], [1, 0, 2, 3],
    [2, 1, 3, 0], [3, 0, 1, 2], [0, 1, 3, 2], [1, 2, 0, 3], [2, 3, 1, 0],
    [3, 1, 0, 2], [0, 2, 1, 3], [1, 3, 2, 0], [2, 0, 3, 1], [3, 2, 1, 0],
    [0, 3, 2, 1], [1, 0, 3, 2], [2, 1, 0, 3], [3, 0, 2, 1]]

    See Also
    ========

    CyclicGroup, DihedralGroup, AlternatingGroup

    References
    ==========

    .. [1] https://en.wikipedia.org/wiki/Symmetric_group#Generators_and_relations

    r   r   r   T)r   r   r   r   r   r   Úset_symmetric_group_propertiesÚ_is_sym)r   r   r    r!   r"   s        r   ÚSymmetricGroupr7   ù   s¸   € ðN 	ˆA‚vÜœk¨1¨#Ó.Ð/Ó0‰Ø	
ˆaŠÜœk¨1¨a¨&Ó1Ð2Ó3‰ä”�q˜!“ÓˆØ	�‰�ŒÜ�q‹zˆÜ”�q“‹NˆØ�q‘T˜1˜Q™4ˆ
ˆˆ!‰ˆa�‰dÜ�q‹zˆÜ˜d D˜\Ó*ˆÜ" 1 a¨Ô+Ø€A„IØ€Hr   c                 óž   — |dk  rd| _         d| _        nd| _         d| _        |dk  rd| _        nd| _        || _        d| _        |dv | _        y)z+Set known properties of a symmetric group. r1   TFr'   )r   r1   Nr(   r-   s      r   r5   r5   1  sT   € àˆ1‚uØˆŒØˆ�àˆŒØˆŒØˆ1‚uØˆ�àˆŒØ€A„IØ€AÔØ˜6�k€A…Nr   c                 óP   — ddl m} | dk  rt        d«      ‚t         || «      «      S )z—Return a group of Rubik's cube generators

    >>> from sympy.combinatorics.named_groups import RubikGroup
    >>> RubikGroup(2).is_group
    True
    r   )Úrubikr   z(Invalid cube. n has to be greater than 1)Úsympy.combinatorics.generatorsr:   Ú
ValueErrorr   )r   r:   s     r   Ú
RubikGroupr=   B  s)   € õ 5ØˆA‚vÜÐCÓDÐDÜ™E !›HÓ%Ð%r   N)Ú$sympy.combinatorics.group_constructsr   Úsympy.combinatorics.perm_groupsr   Ú sympy.combinatorics.permutationsr   r   r   r$   r   r	   r3   r7   r5   r=   © r   r   ú<module>rB      sG   ðÝ >Ý <Ý 8à
×
Ñ
€ò-ò`<ò~ò"*òZAòH5òp#ó"
&r   