Ë
    7^(hl  ã                   ó,   — d dl mZ d dlmZ dd„Zdd„Zy)é    )ÚS)ÚPolyNc                 ó¦  — |�dnd}|r| }t        | g|¢­i |¤Ž} t        |g|¢­i |¤Ž}| j                  r|j                  st        d«      ‚| j                  |j                  k(  st        d«      ‚| j                  }| j	                  «       dk  s|j	                  «       dk  rdhS | j                  «       }|s|j                  «       n|}t        «       }|d   D ]ö  \  }	}
|d   D ]é  \  }}
|	j	                  «       }|j	                  «       }||k7  rŒ,|	j                  «       }|j                  «       }||z
  j                  sŒ\|	j                  ||dz
  z  «      }|j                  ||dz
  z  «      }||z
  t        ||z  «      z  }|j                  sŒ«|dk  s||v rŒµ|dkD  r|	|j                  |«      z
  j                  sŒÙ|j                  |«       Œë Œø |S )a=  Compute the *dispersion set* of two polynomials.

    For two polynomials `f(x)` and `g(x)` with `\deg f > 0`
    and `\deg g > 0` the dispersion set `\operatorname{J}(f, g)` is defined as:

    .. math::
        \operatorname{J}(f, g)
        & := \{a \in \mathbb{N}_0 | \gcd(f(x), g(x+a)) \neq 1\} \\
        &  = \{a \in \mathbb{N}_0 | \deg \gcd(f(x), g(x+a)) \geq 1\}

    For a single polynomial one defines `\operatorname{J}(f) := \operatorname{J}(f, f)`.

    Examples
    ========

    >>> from sympy import poly
    >>> from sympy.polys.dispersion import dispersion, dispersionset
    >>> from sympy.abc import x

    Dispersion set and dispersion of a simple polynomial:

    >>> fp = poly((x - 3)*(x + 3), x)
    >>> sorted(dispersionset(fp))
    [0, 6]
    >>> dispersion(fp)
    6

    Note that the definition of the dispersion is not symmetric:

    >>> fp = poly(x**4 - 3*x**2 + 1, x)
    >>> gp = fp.shift(-3)
    >>> sorted(dispersionset(fp, gp))
    [2, 3, 4]
    >>> dispersion(fp, gp)
    4
    >>> sorted(dispersionset(gp, fp))
    []
    >>> dispersion(gp, fp)
    -oo

    Computing the dispersion also works over field extensions:

    >>> from sympy import sqrt
    >>> fp = poly(x**2 + sqrt(5)*x - 1, x, domain='QQ<sqrt(5)>')
    >>> gp = poly(x**2 + (2 + sqrt(5))*x + sqrt(5), x, domain='QQ<sqrt(5)>')
    >>> sorted(dispersionset(fp, gp))
    [2]
    >>> sorted(dispersionset(gp, fp))
    [1, 4]

    We can even perform the computations for polynomials
    having symbolic coefficients:

    >>> from sympy.abc import a
    >>> fp = poly(4*x**4 + (4*a + 8)*x**3 + (a**2 + 6*a + 4)*x**2 + (a**2 + 2*a)*x, x)
    >>> sorted(dispersionset(fp))
    [0, 1]

    See Also
    ========

    dispersion

    References
    ==========

    .. [1] [ManWright94]_
    .. [2] [Koepf98]_
    .. [3] [Abramov71]_
    .. [4] [Man93]_
    FTz!Polynomials need to be univariatez(Polynomials must have the same generatoré   r   )r   Úis_univariateÚ
ValueErrorÚgenÚdegreeÚfactor_listÚsetÚLCÚis_zeroÚcoeff_monomialr   Ú
is_integerÚshiftÚadd)ÚpÚqÚgensÚargsÚsamer	   ÚfpÚfqÚJÚsÚunusedÚtÚmÚnÚanÚbnÚanm1Úbnm1Úalphas                      úT/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/sympy/polys/dispersion.pyÚdispersionsetr&      sÏ  € ðR �M‰5 t€DÙØˆäˆQÐ�Ò˜Ñ€AÜˆQÐ�Ò˜Ñ€Aà�?Š? !§/¢/ÜÐ<Ó=Ð=ð �5‰5�A—E‘EŠ>ÜÐCÓDÐDØ
�%‰%€Cð 	‡x�xƒz�A‚~˜Ÿ™› ašØˆsˆ
ð 
�‰‹€BÙ $ˆ�‰Œ¨"€Bô 	‹€AØ˜‘Uò ‰	ˆˆ6Ø˜A™ò 	‰IˆAˆvØ—‘“
ˆAØ—‘“
ˆAØ�AŠvØØ—‘“ˆBØ—‘“ˆBØ˜‘G×$Ò$Øð ×#Ñ# C¨!¨A©#¡JÓ/ˆDØ×#Ñ# C¨!¨A©#¡JÓ/ˆDØ˜D‘[¤A a¨¡d£GÑ+ˆEØ×#Ò#ØØ�qŠy˜E Q™JØØ�1Šu˜a !§'¡'¨%£.Ñ0×9Ò9ØØ�E‰E�%�Lñ+	ðð0 €Hó    c                 ód   — t        | |g|¢­i |¤Ž}|st        j                  }|S t        |«      }|S )aÀ  Compute the *dispersion* of polynomials.

    For two polynomials `f(x)` and `g(x)` with `\deg f > 0`
    and `\deg g > 0` the dispersion `\operatorname{dis}(f, g)` is defined as:

    .. math::
        \operatorname{dis}(f, g)
        & := \max\{ J(f,g) \cup \{0\} \} \\
        &  = \max\{ \{a \in \mathbb{N} | \gcd(f(x), g(x+a)) \neq 1\} \cup \{0\} \}

    and for a single polynomial `\operatorname{dis}(f) := \operatorname{dis}(f, f)`.
    Note that we make the definition `\max\{\} := -\infty`.

    Examples
    ========

    >>> from sympy import poly
    >>> from sympy.polys.dispersion import dispersion, dispersionset
    >>> from sympy.abc import x

    Dispersion set and dispersion of a simple polynomial:

    >>> fp = poly((x - 3)*(x + 3), x)
    >>> sorted(dispersionset(fp))
    [0, 6]
    >>> dispersion(fp)
    6

    Note that the definition of the dispersion is not symmetric:

    >>> fp = poly(x**4 - 3*x**2 + 1, x)
    >>> gp = fp.shift(-3)
    >>> sorted(dispersionset(fp, gp))
    [2, 3, 4]
    >>> dispersion(fp, gp)
    4
    >>> sorted(dispersionset(gp, fp))
    []
    >>> dispersion(gp, fp)
    -oo

    The maximum of an empty set is defined to be `-\infty`
    as seen in this example.

    Computing the dispersion also works over field extensions:

    >>> from sympy import sqrt
    >>> fp = poly(x**2 + sqrt(5)*x - 1, x, domain='QQ<sqrt(5)>')
    >>> gp = poly(x**2 + (2 + sqrt(5))*x + sqrt(5), x, domain='QQ<sqrt(5)>')
    >>> sorted(dispersionset(fp, gp))
    [2]
    >>> sorted(dispersionset(gp, fp))
    [1, 4]

    We can even perform the computations for polynomials
    having symbolic coefficients:

    >>> from sympy.abc import a
    >>> fp = poly(4*x**4 + (4*a + 8)*x**3 + (a**2 + 6*a + 4)*x**2 + (a**2 + 2*a)*x, x)
    >>> sorted(dispersionset(fp))
    [0, 1]

    See Also
    ========

    dispersionset

    References
    ==========

    .. [1] [ManWright94]_
    .. [2] [Koepf98]_
    .. [3] [Abramov71]_
    .. [4] [Man93]_
    )r&   r   ÚNegativeInfinityÚmax)r   r   r   r   r   Újs         r%   Ú
dispersionr,   ‚   s@   € ôX 	�a˜Ð*˜TÒ* TÑ*€AÙä×Ñˆð €Hô �‹FˆØ€Hr'   )N)Ú
sympy.corer   Úsympy.polysr   r&   r,   © r'   r%   ú<module>r0      s   ðÝ Ý ózôzRr'   