<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    [zz]中國剩余公理+擴展歐幾里德算法

    Posted on 2008-09-26 13:19 xan 閱讀(710) 評論(0)  編輯  收藏 所屬分類: Algorithms
    [reference: http://en.wikipedia.org/wiki/Chinese_remainder_theorem & http://en.wikipedia.org/wiki/Extended_Euclidean_algorithm ]

    Suppose n1, n2, …, nk are positive integers which are pairwise coprime. Then, for any given integers a1,a2, …, ak, there exists an integer x solving the system of simultaneous congruences

    \begin{align}
 x &\equiv a_1 \pmod{n_1} \\
 x &\equiv a_2 \pmod{n_2} \\
   &\vdots \\
 x &\equiv a_k \pmod{n_k}
\end{align}

    Furthermore, all solutions x to this system are congruent modulo the product N = n1n2nk.

    Hence x \equiv y \pmod{n_i} for all 1\leq i \leq k, if and only if x \equiv y \pmod{N}.

    Sometimes, the simultaneous congruences can be solved even if the ni's are not pairwise coprime. A solution x exists if and only if:

    a_i \equiv a_j \pmod{\gcd(n_i,n_j)} \qquad \mbox{for all }i\mbox{ and }j . \,\!

    All solutions x are then congruent modulo the least common multiple of the ni.

    Versions of the Chinese remainder theorem were also known to Brahmagupta (7th century), and appear in Liber Abaci (1202).

    [edit] A constructive algorithm to find the solution

    This algorithm only treats the situations where the ni's are coprime. The method of successive substitution can often yield solutions to simultaneous congruences, even when the moduli are not pairwise coprime.

    Suppose, as above, that a solution is needed to the system of congruences:

    x \equiv a_i \pmod{n_i} \quad\mathrm{for}\; i = 1, \ldots, k.

    Again, to begin, the product  N=n_1n_2\ldots n_k is defined. Then a solution x can be found as follows.

    For each i the integers ni and N / ni are coprime. Using the extended Euclidean algorithm we can therefore find integers ri and si such that rini + siN / ni = 1. Then, choosing the label ei = siN / ni, the above expression becomes:

     r_i n_i + e_i = 1 \,\!

    Consider ei. The above equation guarantees that its remainder, when divided by ni, must be 1. On the other hand, since it is formed as siN / ni, the presence of N guarantees that it's evenly divisible by any nj so long as j\ne i.

    e_i \equiv 1 \pmod{n_i} \quad \mathrm{and} \quad e_i \equiv 0 \pmod{n_j} \quad \mathrm{for} ~ i \ne j

    Because of this, combined with the multiplication rules allowed in congruences, one solution to the system of simultaneous congruences is:

     x = \sum_{i=1}^k a_i e_i.\!

    For example, consider the problem of finding an integer x such that

    x \equiv 2 \pmod{3}, \,\!
    x \equiv 3 \pmod{4}, \,\!
    x \equiv 1 \pmod{5}. \,\!

    Using the extended Euclidean algorithm for 3 and 4×5 = 20, we find (−13) × 3 + 2 × 20 = 1, i.e. e1 = 40. Using the Euclidean algorithm for 4 and 3×5 = 15, we get (−11) × 4 + 3 × 15 = 1. Hence, e2 = 45. Finally, using the Euclidean algorithm for 5 and 3×4 = 12, we get 5 × 5 + (−2) × 12 = 1, meaning e3 = −24. A solution x is therefore 2 × 40 + 3 × 45 + 1 × (−24) = 191. All other solutions are congruent to 191 modulo 60, (3 × 4 × 5 = 60) which means that they are all congruent to 11 modulo 60.

    NOTE: There are multiple implementations of the extended Euclidean algorithm which will yield different sets of e1, e2, and e3. These sets however will produce the same solution i.e. 11 modulo 60.


    extended Enclidean algorithm

    [edit] Informal formulation of the algorithm

    Dividend Divisor Quotient Remainder
    120 23 5 5
    23 5 4 3
    5 3 1 2
    3 2 1 1
    2 1 2 0

    It is assumed that the reader is already familiar with .

    To illustrate the extension of the Euclid's algorithm, consider the computation of gcd(120, 23), which is shown on the table on the left. Notice that the quotient in each division is recorded as well alongside the remainder.

    In this case, the remainder in the fourth line (which is equal to 1) indicates that the gcd is 1; that is, 120 and 23 are coprime (also called relatively prime). For the sake of simplicity, the example chosen is a coprime pair; but the more general case of gcd other than 1 also works similarly.

    There are two methods to proceed, both using the division algorithm, which will be discussed separately.

    [edit] The iterative method

    This method computes expressions of the form ri = axi + byi for the remainder in each step i of the Euclidean algorithm. Each modulus can be written in terms of the previous two remainders and their whole quotient as follows:

    By substitution, this gives:

    The first two values are the initial arguments to the algorithm:

    r1 = a = a(1) + b(0)
    r2 = b = a(0) + b(1)

    The expression for the last non-zero remainder gives the desired results since this method computes every remainder in terms of a and b, as desired.

    Example: Compute the GCD of 120 and 23.

    The computation proceeds as follows:

    Step Quotient Remainder Substitute Combine terms
    1 120 120 = 120 * 1 + 23 * 0
    2 23 23 = 120 * 0 + 23 * 1
    3 5 5 = 120 - 23 * 5 5 = (120 * 1 + 23 * 0) - (120 * 0 + 23 * 1) * 5 5 = 120 * 1 + 23 * -5
    4 4 3 = 23 - 5 * 4 3 = (120 * 0 + 23 * 1) - (120 * 1 + 23 * -5) * 4 3 = 120 * -4 + 23 * 21
    5 1 2 = 5 - 3 * 1 2 = (120 * 1 + 23 * -5) - (120 * -4 + 23 * 21) * 1 2 = 120 * 5 + 23 * -26
    6 1 1 = 3 - 2 * 1 1 = (120 * -4 + 23 * 21) - (120 * 5 + 23 * -26) * 1 1 = 120 * -9 + 23 * 47
    7 2 0 End of algorithm

    The last line reads 1 = −9×120 + 47×23, which is the required solution: x = −9 and y = 47.

    This also means that −9 is the multiplicative inverse of 120 modulo 23, and that 47 is the multiplicative inverse of 23 modulo 120.

    −9 × 120 ≡ 1 mod 23 and also 47 × 23 ≡ 1 mod 120.

    [edit] The recursive method

    This method attempts to solve the original equation directly, by reducing the dividend and divisor gradually, from the first line to the last line, which can then be substituted with trivial value and work backward to obtain the solution.

    Consider the original equation:

    120 x + 23 y = 1
    (5×23+5) x + 23 y = 1
    23 (5x+y) + 5 x = 1
    ...
    1 a + 0 b = 1

    Notice that the equation remains unchanged after decomposing the original dividend in terms of the divisor plus a remainder, and then regrouping terms. If we have a solution to the equation in the second line, then we can work backward to find x and y as required. Although we don't have the solution yet to the second line, notice how the magnitude of the terms decreased (120 and 23 to 23 and 5). Hence, if we keep applying this, eventually we'll reach the last line, which obviously has (1,0) as a trivial solution. Then we can work backward and gradually find out x and y.

    Dividend = Quotient x Divisor + Remainder
    120 = 5 x 23 + 5
    23 = 4 x 5 + 3
    ...

    For the purpose of explaining this method, the full working will not be shown. Instead some of the repeating steps will be described to demonstrate the principle behind this method.

    Start by rewriting each line from the first table with division algorithm, focusing on the dividend this time (because we'll be substituting the dividend).

    120 x0 + 23 y0 = 1
    (5×23+5) x0 + 23 y0 = 1
    23 (5x0+y0) + 5 x0 = 1
    23 x1 + 5 y1 = 1
    (4×5+3) x1 + 5 y1 = 1
    5 (4x1+y1) + 3 x1 = 1
    5 x2 + 3 y2 = 1
    1. Assume that we were given x2=2 and y2=-3 already, which is indeed a valid solution.
    2. x1=y2=-3
    3. Solve 4x1+y1=x2 by substituting x1=-3, which gives y1=2-4(-3)=14
    4. x0=y1=14
    5. Solve 5x0+y0=x1 by substituting x0=14, so y0=-3-5(14)=-73


    [edit] The table method

    The table method is probably the simplest method to carry out with a pencil and paper. It is similar to the recursive method, although it does not directly require algebra to use and only requires working in one direction. The main idea is to think of the equation chain as a sequence of divisors . In the running example we have the sequence 120, 23, 5, 3, 2, 1. Any element in this chain can be written as a linear combination of the original x and y, most notably, the last element, gcd(x,y), can be written in this way. The table method involves keeping a table of each divisor, written as a linear combination. The algorithm starts with the table as follows:

    a b d
    1 0 120
    0 1 23

    The elements in the d column of the table will be the divisors in the sequence. Each di can be represented as the linear combination . The a and b values are obvious for the first two rows of the table, which represent x and y themselves. To compute di for any i > 2, notice that . Suppose . Then it must be that and . This is easy to verify algebraically with a simple substitution.

    Actually carrying out the table method though is simpler than the above equations would indicate. To find the third row of the table in the example, just notice that 120 divided by 23 goes 5 times plus a remainder. This gives us k, the multiplying factor for this row. Now, each value in the table is the value two rows above it, minus k times the value immediately above it. This correctly leads to , , and . After repeating this method to find each line of the table (note that the remainder written in the table and the multiplying factor are two different numbers!), the final values for a and b will solve :

    a b d
    1 0 120
    0 1 23
    1 -5 5
    -4 21 3
    5 -26 2
    -9 47 1

    This method is simple, requiring only the repeated application of one rule, and leaves the answer in the final row of the table with no backtracking. Note also that if you end up with a negative number as the answer for the factor of, in this case b, you will then need to add the modulus in order to make it work as a modular inverse (instead of just taking the absolute value of b). I.e. if it returns a negative number, don't just flip the sign, but add in the other number to make it work. Otherwise it will give you the modular inverse yielding negative one.



    只有注冊用戶登錄后才能發表評論。


    網站導航:
     

    posts - 36, comments - 2, trackbacks - 0, articles - 0

    Copyright © xan

    主站蜘蛛池模板: 国产免费一区二区视频| 久久亚洲AV成人无码国产最大| 黄色网址免费在线| 国产成人涩涩涩视频在线观看免费| 黄页视频在线观看免费| 免费无码又爽又刺激高潮的视频| 亚洲国产日韩综合久久精品| 久久久久久国产a免费观看黄色大片 | 亚洲午夜福利精品无码| 深夜a级毛片免费视频| 久久精品免费观看| 久久夜色精品国产嚕嚕亚洲av| 麻豆精品不卡国产免费看| 亚洲av日韩av天堂影片精品| 午夜理伦剧场免费| 免费在线不卡视频| 一级特黄录像视频免费| 亚洲欭美日韩颜射在线二| 在线毛片片免费观看| 亚洲无人区视频大全| 国产在线国偷精品产拍免费| 久久久亚洲精品视频| 在免费jizzjizz在线播| 国产亚洲精品xxx| 亚洲AV无码精品国产成人| 日韩亚洲国产二区| 91丁香亚洲综合社区| 老司机永久免费网站在线观看| 免费看内射乌克兰女| 久久亚洲AV午夜福利精品一区| 免费专区丝袜脚调教视频| 亚洲av无码无线在线观看| 亚洲中文字幕无码永久在线| 久久综合国产乱子伦精品免费| 亚洲午夜精品一区二区麻豆| 免费一级e一片在线播放| 先锋影音资源片午夜在线观看视频免费播放| 亚洲日本香蕉视频| 四虎影在线永久免费四虎地址8848aa | 免费在线看污视频| 亚洲真人无码永久在线观看|