Ë
    7^(h  ã                   ó<   — d Z ddlmZmZ ddlmZ ddlmZ d„ Zd„ Z	y)z
Recurrences
é    )ÚSÚsympify)Úiterable)Úas_intc                 óP  — | st         j                  S t        | «      st        d«      ‚t        |«      st        d«      ‚t	        |«      }|dk  rt        d«      ‚| D �cg c]  }t        |«      ‘Œ }}|D �cg c]  }t        |«      ‘Œ }}t        |«      }t        |«      |kD  rt        d«      ‚|t         j                  g|t        |«      z
  z  z  }||k  r||   S t        t        ||«      |«      D ��cg c]
  \  }}||z  ‘Œ }	}}t        |	dd |	d   «      S c c}w c c}w c c}}w )aŽ	  
    Evaluation of univariate linear recurrences of homogeneous type
    having coefficients independent of the recurrence variable.

    Parameters
    ==========

    coeffs : iterable
        Coefficients of the recurrence
    init : iterable
        Initial values of the recurrence
    n : Integer
        Point of evaluation for the recurrence

    Notes
    =====

    Let `y(n)` be the recurrence of given type, ``c`` be the sequence
    of coefficients, ``b`` be the sequence of initial/base values of the
    recurrence and ``k`` (equal to ``len(c)``) be the order of recurrence.
    Then,

    .. math :: y(n) = \begin{cases} b_n & 0 \le n < k \\
        c_0 y(n-1) + c_1 y(n-2) + \cdots + c_{k-1} y(n-k) & n \ge k
        \end{cases}

    Let `x_0, x_1, \ldots, x_n` be a sequence and consider the transformation
    that maps each polynomial `f(x)` to `T(f(x))` where each power `x^i` is
    replaced by the corresponding value `x_i`. The sequence is then a solution
    of the recurrence if and only if `T(x^i p(x)) = 0` for each `i \ge 0` where
    `p(x) = x^k - c_0 x^(k-1) - \cdots - c_{k-1}` is the characteristic
    polynomial.

    Then `T(f(x)p(x)) = 0` for each polynomial `f(x)` (as it is a linear
    combination of powers `x^i`). Now, if `x^n` is congruent to
    `g(x) = a_0 x^0 + a_1 x^1 + \cdots + a_{k-1} x^{k-1}` modulo `p(x)`, then
    `T(x^n) = x_n` is equal to
    `T(g(x)) = a_0 x_0 + a_1 x_1 + \cdots + a_{k-1} x_{k-1}`.

    Computation of `x^n`,
    given `x^k = c_0 x^{k-1} + c_1 x^{k-2} + \cdots + c_{k-1}`
    is performed using exponentiation by squaring (refer to [1_]) with
    an additional reduction step performed to retain only first `k` powers
    of `x` in the representation of `x^n`.

    Examples
    ========

    >>> from sympy.discrete.recurrences import linrec
    >>> from sympy.abc import x, y, z

    >>> linrec(coeffs=[1, 1], init=[0, 1], n=10)
    55

    >>> linrec(coeffs=[1, 1], init=[x, y], n=10)
    34*x + 55*y

    >>> linrec(coeffs=[x, y], init=[0, 1], n=5)
    x**2*y + x*(x**3 + 2*x*y) + y**2

    >>> linrec(coeffs=[1, 2, 3, 0, 0, 4], init=[x, y, z], n=16)
    13576*x + 5676*y + 2356*z

    References
    ==========

    .. [1] https://en.wikipedia.org/wiki/Exponentiation_by_squaring
    .. [2] https://en.wikipedia.org/w/index.php?title=Modular_exponentiation&section=6#Matrices

    See Also
    ========

    sympy.polys.agca.extensions.ExtensionElement.__pow__

    z6Expected a sequence of coefficients for the recurrencezFExpected a sequence of values for the initialization of the recurrencer   z@Point of evaluation of recurrence must be a non-negative integerzECount of initial values should not exceed the order of the recurrenceNéÿÿÿÿ)r   ÚZeror   Ú	TypeErrorr   Ú
ValueErrorr   ÚlenÚzipÚlinrec_coeffsÚsum)
ÚcoeffsÚinitÚnÚargÚcÚbÚkÚuÚvÚtermss
             úX/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/sympy/discrete/recurrences.pyÚlinrecr   
   s<  € ñZ Ü�v‰vˆä�FÔÜð *ó +ð 	+ô �DŒ>Üð -ó .ð 	.ô 	ˆq‹	€AØˆ1‚uÜð /ó 0ð 	0ð "(Ö(˜#Œ��Ð(€AÐ(Ø!%Ö&˜#Œ��Ð&€AÐ&ÜˆA‹€Aä
ˆ1ƒv�‚zÜð 2ó 3ð 	3ð 	
Œa�f‰fˆX�qœ3˜q›6‘zÑ"Ñ"ˆàˆ1‚uØ�‰tˆÜ ¤¨q°!Ó!4°aÓ8×9‘T�Q˜ˆQˆq‹SÐ9€EÑ9Üˆu�S�bˆz˜5 ™9Ó%Ð%ùò 	)ùÚ&ùó :s   ÁDÁ6DÃ4D"c                 óJ   ‡ ‡‡‡— t        ‰ «      Šˆ ˆfd„Šˆˆˆfd„Š ‰|«      S )a–  
    Compute the coefficients of n'th term in linear recursion
    sequence defined by c.

    `x^k = c_0 x^{k-1} + c_1 x^{k-2} + \cdots + c_{k-1}`.

    It computes the coefficients by using binary exponentiation.
    This function is used by `linrec` and `_eval_pow_by_cayley`.

    Parameters
    ==========

    c = coefficients of the divisor polynomial
    n = exponent of x, so dividend is x^n

    c                 ól  •— t         j                  gdt        | «      z  dz
  |z   z  }t        | «      D ].  \  }}t        | «      D ]  \  }}|||z   |z   xx   ||z  z  cc<   Œ Œ0 t	        t        |«      dz
  ‰dz
  d«      D ].  }t	        ‰«      D ]  }|||z
  dz
  xx   ||   ‰|   z  z  cc<   Œ  Œ0 |d ‰ S )Né   é   r   )r   r	   r   Ú	enumerateÚrange)	r   ÚoffsetÚwÚiÚpÚjÚqr   r   s	          €€r   Ú_square_and_reducez)linrec_coeffs.<locals>._square_and_reduce‹   sØ   ø€ ô �V‰VˆH�aœ˜A›‘h ‘l VÑ+Ñ,ˆÜ˜a“Lò 	)‰DˆAˆqÜ! !›ò )‘��1Ø�&˜1‘*˜q‘.Ó! Q q¡SÑ(Ô!ñ)ð	)ô ”s˜1“v ‘z 1 q¡5¨"Ó-ò 	*ˆAÜ˜1“Xò *�Ø�!�a‘%˜!‘)“  !¡ Q q¡T¡	Ñ)”ñ*ð	*ð ��!ˆuˆó    c                 óº   •— | ‰k  rAt         j                  g| z  t         j                  gz   t         j                  g‰| z
  dz
  z  z   S  ‰ ‰| dz  «      | dz  «      S )Nr   r   )r   r	   ÚOne)r   Ú_final_coeffsr(   r   s    €€€r   r,   z$linrec_coeffs.<locals>._final_coeffsœ   sY   ø€ ð
 ˆqŠ5Ü—F‘F�8˜A‘:¤§¡ Ñ'¬1¯6©6¨(°A¸±E¸A±IÑ*>Ñ>Ð>á%¡m°A¸±FÓ&;¸QÀ¹UÓCÐCr)   )r   )r   r   r,   r(   r   s   ` @@@r   r   r   w   s&   û€ ô$ 	ˆA‹€Aõö"Dñ ˜ÓÐr)   N)
Ú__doc__Ú
sympy.corer   r   Úsympy.utilities.iterablesr   Úsympy.utilities.miscr   r   r   © r)   r   ú<module>r2      s!   ðñ÷ "Ý .Ý 'òj&óZ/r)   