o
    8VaUF                     @   s   d Z ddlmZ ddlmZ ddlmZ ddlmZ ddl	m
Z
 ddlmZ ddlmZ dd	lmZ dd
lmZ G dd deZG dd deZG dd deZG dd dZG dd deeZe  Ze_G dd deeZe  Ze_dS )zDomains of Gaussian type.    )I)CoercionFailed)ZZ)QQ)AlgebraicField)Domain)DomainElement)Field)Ringc                       s   e Zd ZdZdZdZdZd5ddZe fddZ	d	d
 Z
dd Zdd Zdd Zdd Zdd Zdd Zdd Zedd Zdd ZeZdd Zdd  Zd!d" ZeZd#d$ Zd%d& Zd'd( Zd)d* Zd+d, Zd-d. Zd/d0 Zd1d2 Z d3d4 Z!  Z"S )6GaussianElementz1Base class for elements of Gaussian type domains.N)xyr   c                 C   s   | j j}| ||||S N)baseconvertnew)clsr   r   conv r   E/usr/lib/python3/dist-packages/sympy/polys/domains/gaussiandomains.py__new__   s   zGaussianElement.__new__c                    s   t  | }||_||_|S )z0Create a new GaussianElement of the same domain.)superr   r   r   )r   r   r   obj	__class__r   r   r      s   zGaussianElement.newc                 C   s   | j S )z4The domain that this is an element of (ZZ_I or QQ_I))_parentselfr   r   r   parent!   s   zGaussianElement.parentc                 C   s   t | j| jfS r   )hashr   r   r   r   r   r   __hash__%      zGaussianElement.__hash__c                 C   s(   t || jr| j|jko| j|jkS tS r   )
isinstancer   r   r   NotImplementedr   otherr   r   r   __eq__(   s   zGaussianElement.__eq__c                 C   s&   t |tstS | j| jg|j|jgk S r   )r"   r   r#   r   r   r$   r   r   r   __lt__.   s   
zGaussianElement.__lt__c                 C      | S r   r   r   r   r   r   __pos__3   s   zGaussianElement.__pos__c                 C   s   |  | j | j S r   r   r   r   r   r   r   r   __neg__6      zGaussianElement.__neg__c                 C   s   d| j j| j| jf S )Nz
%s(%s, %s))r   repr   r   r   r   r   r   __repr__9   s   zGaussianElement.__repr__c                 C   s   t | j| S r   )strr   to_sympyr   r   r   r   __str__<   r!   zGaussianElement.__str__c                 C   s<   t || sz| j|}W n
 ty   Y dS w |j|jfS )N)NN)r"   r   r   r   r   r   )r   r%   r   r   r   _get_xy?   s   
zGaussianElement._get_xyc                 C   s2   |  |\}}|d ur| | j| | j| S tS r   r2   r   r   r   r#   r   r%   r   r   r   r   r   __add__H      zGaussianElement.__add__c                 C   s2   |  |\}}|d ur| | j| | j| S tS r   r3   r4   r   r   r   __sub__Q   r6   zGaussianElement.__sub__c                 C   s2   |  |\}}|d ur| || j || j S tS r   r3   r4   r   r   r   __rsub__X   r6   zGaussianElement.__rsub__c                 C   sF   |  |\}}|d ur!| | j| | j|  | j| | j|  S tS r   r3   r4   r   r   r   __mul___   s   ,zGaussianElement.__mul__c                 C   s   |dkr
|  ddS |dk rd|  | } }|dkr| S | }|d r$| n| jj}|d }|r@||9 }|d r:||9 }|d }|s.|S )Nr         )r   r   one)r   ZexpZpow2Zprodr   r   r   __pow__h   s    zGaussianElement.__pow__c                 C   s   t | jp	t | jS r   )boolr   r   r   r   r   r   __bool__y   r,   zGaussianElement.__bool__c                 C   sJ   | j dkr| jdkrdS dS | j dk r| jdk rdS dS | jdkr#dS dS )zIReturn quadrant index 0-3.

        0 is included in quadrant 0.
        r   r:   r;      )r   r   r   r   r   r   quadrant|   s
   

zGaussianElement.quadrantc                 C   s2   z| j |}W n ty   t Y S w || S r   )r   r   r   r#   
__divmod__r$   r   r   r   __rdivmod__   s   
zGaussianElement.__rdivmod__c                 C   s0   zt |}W n ty   t Y S w || S r   )QQ_Ir   r   r#   __truediv__r$   r   r   r   __rtruediv__   s   
zGaussianElement.__rtruediv__c                 C      |  |}|tu r|S |d S Nr   rB   r#   r   r%   Zqrr   r   r   __floordiv__      
zGaussianElement.__floordiv__c                 C   rG   rH   rC   r#   rJ   r   r   r   __rfloordiv__   rL   zGaussianElement.__rfloordiv__c                 C   rG   Nr:   rI   rJ   r   r   r   __mod__   rL   zGaussianElement.__mod__c                 C   rG   rO   rM   rJ   r   r   r   __rmod__   rL   zGaussianElement.__rmod__)r   )#__name__
__module____qualname____doc__r   r   	__slots__r   classmethodr   r   r    r&   r'   r)   r+   r.   r1   r2   r5   __radd__r7   r8   r9   __rmul__r=   r?   rA   rC   rF   rK   rN   rP   rQ   __classcell__r   r   r   r   r      sB    

r   c                   @   $   e Zd ZdZeZdd Zdd ZdS )GaussianIntegerzGaussian integer: domain element for :ref:`ZZ_I`

        >>> from sympy import ZZ_I
        >>> z = ZZ_I(2, 3)
        >>> z
        (2 + 3*I)
        >>> type(z)
        <class 'sympy.polys.domains.gaussiandomains.GaussianInteger'>
    c                 C   s   t | | S )Return a Gaussian rational.)rD   r   r$   r   r   r   rE      s   zGaussianInteger.__truediv__c           
      C   s   |s	t d| | |\}}|d u rtS | j| | j|  | j | | j|  }}|| ||  }d| | d|  }d| | d|  }t||}	|	| |	|  fS )Nzdivmod({}, 0)r;   )ZeroDivisionErrorformatr2   r#   r   r   r\   )
r   r%   r   r   abcZqxZqyqr   r   r   rB      s   ,
zGaussianInteger.__divmod__N)rR   rS   rT   rU   r   r   rE   rB   r   r   r   r   r\      s
    	r\   c                   @   r[   )GaussianRationala  Gaussian rational: domain element for :ref:`QQ_I`

        >>> from sympy import QQ_I, QQ
        >>> z = QQ_I(QQ(2, 3), QQ(4, 5))
        >>> z
        (2/3 + 4/5*I)
        >>> type(z)
        <class 'sympy.polys.domains.gaussiandomains.GaussianRational'>
    c                 C   sp   |s	t d| | |\}}|du rtS || ||  }t| j| | j|  | | j | | j|  | S )r]   z{} / 0N)r^   r_   r2   r#   rd   r   r   )r   r%   r   r   rb   r   r   r   rE      s   zGaussianRational.__truediv__c                 C   sH   z| j |}W n ty   t Y S w |std| | | tjfS )Nz{} % 0)r   r   r   r#   r^   r_   rD   zeror$   r   r   r   rB      s   zGaussianRational.__divmod__N)rR   rS   rT   rU   r   r   rE   rB   r   r   r   r   rd      s
    	rd   c                   @   s   e Zd ZdZdZdZdZdZdZdd Z	dd Z
dd	 Zd
d Zdd Zdd Zdd Zdd Zdd Zdd Zdd Zdd Zdd Zdd Zd d! ZdS )"GaussianDomainz Base class for Gaussian domains.NTc                 C   s    | j j}||jt||j  S )z!Convert ``a`` to a SymPy object. )domr0   r   r   r   )r   r`   r   r   r   r   r0      s   zGaussianDomain.to_sympyc                 C   sb   |  \}}| j|}|s| |dS | \}}| j|}|tu r*| ||S td|)z)Convert a SymPy object to ``self.dtype``.r   z{} is not Gaussian)Zas_coeff_Addrg   
from_sympyr   Zas_coeff_Mulr   r   r_   )r   r`   rra   r   r   r   r   r   rh     s   zGaussianDomain.from_sympyc                 G   s
   | j | S )z$Inject generators into this domain. )Z	poly_ring)r   Zgensr   r   r   inject  s   
zGaussianDomain.injectc                 C   s   | j |   }|S r   )unitsrA   )r   dunitr   r   r   canonical_unit  s   zGaussianDomain.canonical_unitc                 C      dS z/Returns ``False`` for any ``GaussianElement``. Fr   r   elementr   r   r   is_negative     zGaussianDomain.is_negativec                 C   ro   rp   r   rq   r   r   r   is_positive  rt   zGaussianDomain.is_positivec                 C   ro   rp   r   rq   r   r   r   is_nonnegative   rt   zGaussianDomain.is_nonnegativec                 C   ro   rp   r   rq   r   r   r   is_nonpositive$  rt   zGaussianDomain.is_nonpositivec                 C      | |S )z%Convert a GMPY mpz to ``self.dtype``.r   ZK1r`   ZK0r   r   r   from_ZZ_gmpy(     zGaussianDomain.from_ZZ_gmpyc                 C   rx   z.Convert a ZZ_python element to ``self.dtype``.r   ry   r   r   r   from_ZZ,  r{   zGaussianDomain.from_ZZc                 C   rx   r|   r   ry   r   r   r   from_ZZ_python0  r{   zGaussianDomain.from_ZZ_pythonc                 C   rx   z%Convert a GMPY mpq to ``self.dtype``.r   ry   r   r   r   from_QQ4  r{   zGaussianDomain.from_QQc                 C   rx   r   r   ry   r   r   r   from_QQ_gmpy8  r{   zGaussianDomain.from_QQ_gmpyc                 C   rx   )z.Convert a QQ_python element to ``self.dtype``.r   ry   r   r   r   from_QQ_python<  r{   zGaussianDomain.from_QQ_pythonc                 C   s$   |j jd tkr| ||S dS )z9Convert an element from ZZ<I> or QQ<I> to ``self.dtype``.r   N)extargsr   rh   r0   ry   r   r   r   from_AlgebraicField@  s   z"GaussianDomain.from_AlgebraicField)rR   rS   rT   rU   rg   Zis_NumericalZis_ExactZhas_assoc_RingZhas_assoc_Fieldr0   rh   rj   rn   rs   ru   rv   rw   rz   r}   r~   r   r   r   r   r   r   r   r   rf      s,    rf   c                   @      e Zd ZdZeZeZeededZeededZ	eededZ
e	e
e	 e
 fZdZdZdZdd Zdd	 Zd
d Zdd Zdd Zdd Zdd Zdd ZdS )GaussianIntegerRinga{
  Ring of Gaussian integers ``ZZ_I``

    The :ref:`ZZ_I` domain represents the `Gaussian integers`_ `\mathbb{Z}[i]`
    as a :py:class:`~.Domain` in the domain system (see
    :ref:`polys-domainsintro`).

    By default a :py:class:`~.Poly` created from an expression with
    coefficients that are combinations of integers and ``I`` (`\sqrt{-1}`)
    will have the domain :ref:`ZZ_I`.

    >>> from sympy import Poly, Symbol, I
    >>> x = Symbol('x')
    >>> p = Poly(x**2 + I)
    >>> p
    Poly(x**2 + I, x, domain='ZZ_I')
    >>> p.domain
    ZZ_I

    The :ref:`ZZ_I` domain can be used to factorise polynomials that are
    reducible over the Gaussian integers.

    >>> from sympy import factor
    >>> factor(x**2 + 1)
    x**2 + 1
    >>> factor(x**2 + 1, domain='ZZ_I')
    (x - I)*(x + I)

    The corresponding `field of fractions`_ is the domain of the Gaussian
    rationals :ref:`QQ_I`. Conversely :ref:`ZZ_I` is the `ring of integers`_
    of :ref:`QQ_I`.

    >>> from sympy import ZZ_I, QQ_I
    >>> ZZ_I.get_field()
    QQ_I
    >>> QQ_I.get_ring()
    ZZ_I

    When using the domain directly :ref:`ZZ_I` can be used as a constructor.

    >>> ZZ_I(3, 4)
    (3 + 4*I)
    >>> ZZ_I(5)
    (5 + 0*I)

    The domain elements of :ref:`ZZ_I` are instances of
    :py:class:`~.GaussianInteger` which support the rings operations
    ``+,-,*,**``.

    >>> z1 = ZZ_I(5, 1)
    >>> z2 = ZZ_I(2, 3)
    >>> z1
    (5 + 1*I)
    >>> z2
    (2 + 3*I)
    >>> z1 + z2
    (7 + 4*I)
    >>> z1 * z2
    (7 + 17*I)
    >>> z1 ** 2
    (24 + 10*I)

    Both floor (``//``) and modulo (``%``) division work with
    :py:class:`~.GaussianInteger` (see the :py:meth:`~.Domain.div` method).

    >>> z3, z4 = ZZ_I(5), ZZ_I(1, 3)
    >>> z3 // z4  # floor division
    (1 + -1*I)
    >>> z3 % z4   # modulo division (remainder)
    (1 + -2*I)
    >>> (z3//z4)*z4 + z3%z4 == z3
    True

    True division (``/``) in :ref:`ZZ_I` gives an element of :ref:`QQ_I`. The
    :py:meth:`~.Domain.exquo` method can be used to divide in :ref:`ZZ_I` when
    exact division is possible.

    >>> z1 / z2
    (1 + -1*I)
    >>> ZZ_I.exquo(z1, z2)
    (1 + -1*I)
    >>> z3 / z4
    (1/2 + -3/2*I)
    >>> ZZ_I.exquo(z3, z4)
    Traceback (most recent call last):
        ...
    ExactQuotientFailed: (1 + 3*I) does not divide (5 + 0*I) in ZZ_I

    The :py:meth:`~.Domain.gcd` method can be used to compute the `gcd`_ of any
    two elements.

    >>> ZZ_I.gcd(ZZ_I(10), ZZ_I(2))
    (2 + 0*I)
    >>> ZZ_I.gcd(ZZ_I(5), ZZ_I(2, 1))
    (2 + 1*I)

    .. _Gaussian integers: https://en.wikipedia.org/wiki/Gaussian_integer
    .. _gcd: https://en.wikipedia.org/wiki/Greatest_common_divisor

    r   r:   ZZ_ITc                 C   ro   )zFor constructing ZZ_I.Nr   r   r   r   r   __init__      zGaussianIntegerRing.__init__c                 C   r(   z)Returns a ring associated with ``self``. r   r   r   r   r   get_ring  rt   zGaussianIntegerRing.get_ringc                 C      t S z*Returns a field associated with ``self``. )rD   r   r   r   r   	get_field  rt   zGaussianIntegerRing.get_fieldc                    s:   |  | | 9 }t fdd|D }|r|f| S |S )zReturn first quadrant element associated with ``d``.

        Also multiply the other arguments by the same power of i.
        c                 3   s    | ]}|  V  qd S r   r   ).0r`   rm   r   r   	<genexpr>  s    z0GaussianIntegerRing.normalize.<locals>.<genexpr>)rn   tuple)r   rl   r   r   r   r   	normalize  s   
zGaussianIntegerRing.normalizec                 C   s    |r||| }}|s|  |S )z-Greatest common divisor of a and b over ZZ_I.)r   r   r`   ra   r   r   r   gcd  s   
zGaussianIntegerRing.gcdc                 C   s   || |  || S )z+Least common multiple of a and b over ZZ_I.)r   r   r   r   r   lcm  s   zGaussianIntegerRing.lcmc                 C      |S )zConvert a ZZ_I element to ZZ_I.r   ry   r   r   r   from_GaussianIntegerRing  rt   z,GaussianIntegerRing.from_GaussianIntegerRingc                 C   s   |  t|jt|jS )zConvert a QQ_I element to ZZ_I.)r   r   r   r   r   ry   r   r   r   from_GaussianRationalField  s   z.GaussianIntegerRing.from_GaussianRationalFieldN)rR   rS   rT   rU   r   rg   r\   dtypere   r<   	imag_unitrk   r-   Zis_GaussianRingZis_ZZ_Ir   r   r   r   r   r   r   r   r   r   r   r   r   F  s&    c
r   c                   @   r   )GaussianRationalFielda  Field of Gaussian rationals ``QQ_I``

    The :ref:`QQ_I` domain represents the `Gaussian rationals`_ `\mathbb{Q}(i)`
    as a :py:class:`~.Domain` in the domain system (see
    :ref:`polys-domainsintro`).

    By default a :py:class:`~.Poly` created from an expression with
    coefficients that are combinations of rationals and ``I`` (`\sqrt{-1}`)
    will have the domain :ref:`QQ_I`.

    >>> from sympy import Poly, Symbol, I
    >>> x = Symbol('x')
    >>> p = Poly(x**2 + I/2)
    >>> p
    Poly(x**2 + I/2, x, domain='QQ_I')
    >>> p.domain
    QQ_I

    The polys option ``gaussian=True`` can be used to specify that the domain
    should be :ref:`QQ_I` even if the coefficients do not contain ``I`` or are
    all integers.

    >>> Poly(x**2)
    Poly(x**2, x, domain='ZZ')
    >>> Poly(x**2 + I)
    Poly(x**2 + I, x, domain='ZZ_I')
    >>> Poly(x**2/2)
    Poly(1/2*x**2, x, domain='QQ')
    >>> Poly(x**2, gaussian=True)
    Poly(x**2, x, domain='QQ_I')
    >>> Poly(x**2 + I, gaussian=True)
    Poly(x**2 + I, x, domain='QQ_I')
    >>> Poly(x**2/2, gaussian=True)
    Poly(1/2*x**2, x, domain='QQ_I')

    The :ref:`QQ_I` domain can be used to factorise polynomials that are
    reducible over the Gaussian rationals.

    >>> from sympy import factor, QQ_I
    >>> factor(x**2/4 + 1)
    (x**2 + 4)/4
    >>> factor(x**2/4 + 1, domain='QQ_I')
    (x - 2*I)*(x + 2*I)/4
    >>> factor(x**2/4 + 1, domain=QQ_I)
    (x - 2*I)*(x + 2*I)/4

    It is also possible to specify the :ref:`QQ_I` domain explicitly with
    polys functions like :py:func:`~.apart`.

    >>> from sympy import apart
    >>> apart(1/(1 + x**2))
    1/(x**2 + 1)
    >>> apart(1/(1 + x**2), domain=QQ_I)
    I/(2*(x + I)) - I/(2*(x - I))

    The corresponding `ring of integers`_ is the domain of the Gaussian
    integers :ref:`ZZ_I`. Conversely :ref:`QQ_I` is the `field of fractions`_
    of :ref:`ZZ_I`.

    >>> from sympy import ZZ_I, QQ_I, QQ
    >>> ZZ_I.get_field()
    QQ_I
    >>> QQ_I.get_ring()
    ZZ_I

    When using the domain directly :ref:`QQ_I` can be used as a constructor.

    >>> QQ_I(3, 4)
    (3 + 4*I)
    >>> QQ_I(5)
    (5 + 0*I)
    >>> QQ_I(QQ(2, 3), QQ(4, 5))
    (2/3 + 4/5*I)

    The domain elements of :ref:`QQ_I` are instances of
    :py:class:`~.GaussianRational` which support the field operations
    ``+,-,*,**,/``.

    >>> z1 = QQ_I(5, 1)
    >>> z2 = QQ_I(2, QQ(1, 2))
    >>> z1
    (5 + 1*I)
    >>> z2
    (2 + 1/2*I)
    >>> z1 + z2
    (7 + 3/2*I)
    >>> z1 * z2
    (19/2 + 9/2*I)
    >>> z2 ** 2
    (15/4 + 2*I)

    True division (``/``) in :ref:`QQ_I` gives an element of :ref:`QQ_I` and
    is always exact.

    >>> z1 / z2
    (42/17 + -2/17*I)
    >>> QQ_I.exquo(z1, z2)
    (42/17 + -2/17*I)
    >>> z1 == (z1/z2)*z2
    True

    Both floor (``//``) and modulo (``%``) division can be used with
    :py:class:`~.GaussianRational` (see :py:meth:`~.Domain.div`)
    but division is always exact so there is no remainder.

    >>> z1 // z2
    (42/17 + -2/17*I)
    >>> z1 % z2
    (0 + 0*I)
    >>> QQ_I.div(z1, z2)
    ((42/17 + -2/17*I), (0 + 0*I))
    >>> (z1//z2)*z2 + z1%z2 == z1
    True

    .. _Gaussian rationals: https://en.wikipedia.org/wiki/Gaussian_rational
    r   r:   rD   Tc                 C   ro   )zFor constructing QQ_I.Nr   r   r   r   r   r   a  r   zGaussianRationalField.__init__c                 C   r   r   )r   r   r   r   r   r   d  rt   zGaussianRationalField.get_ringc                 C   r(   r   r   r   r   r   r   r   h  rt   zGaussianRationalField.get_fieldc                 C   s   t | jtS )z0Get equivalent domain as an ``AlgebraicField``. )r   rg   r   r   r   r   r   as_AlgebraicFieldl  s   z'GaussianRationalField.as_AlgebraicFieldc                 C   s   |   }||| | S )zGet the numerator of ``a``.)r   r   denom)r   r`   r   r   r   r   numerp  s   zGaussianRationalField.numerc                 C   s@   | j  }| j }|  }|||j||j}|||jS )zGet the denominator of ``a``.)rg   r   r   r   r   r   re   )r   r`   r   r   r   Zdenom_ZZr   r   r   r   u  s
   
zGaussianRationalField.denomc                 C   s   |  |j|jS )zConvert a ZZ_I element to QQ_I.r*   ry   r   r   r   r   }  s   z.GaussianRationalField.from_GaussianIntegerRingc                 C   r   )zConvert a QQ_I element to QQ_I.r   ry   r   r   r   r     rt   z0GaussianRationalField.from_GaussianRationalFieldN)rR   rS   rT   rU   r   rg   rd   r   re   r<   r   rk   r-   Zis_GaussianFieldZis_QQ_Ir   r   r   r   r   r   r   r   r   r   r   r   r     s&    tr   N)rU   Zsympy.core.numbersr   Zsympy.polys.polyerrorsr   Zsympy.polys.domains.integerringr   Z!sympy.polys.domains.rationalfieldr   Z"sympy.polys.domains.algebraicfieldr   Zsympy.polys.domains.domainr   Z!sympy.polys.domains.domainelementr   Zsympy.polys.domains.fieldr	   Zsympy.polys.domains.ringr
   r   r\   rd   rf   r   r   r   r   rD   r   r   r   r   <module>   s*     (#R  &