Hi Fred at al., I have made another attempt to fix the residue function, SVN 965. For complex m∣b It now rounds down the real() and imag() parts of the quotient q←b÷m and returns b-q. Instead of always rounding towards 0 or -infinity, the rounding direction is now (compared to the previous attempt) determined by the quadrant in which the modulus m lies. There are still differences to the results displayed by MOD_test.apl, but I suppose they are caused by that program. For example, the first line of MOD_test.apl, says: LA RA MODJ | ¯6J¯6 ¯6J¯5 0J¯11 0J1 We have: (¯6J¯5 - 0J1) ÷ ¯6J¯6 1 (0J¯11 - 0J1) ÷ ¯6J¯6 1J1 so both 0J¯11 and 0J1 are valid remainders modulo ¯6J¯6. However, the magnitude of 0J¯11 (= 11) is larger than the magnitude of the divisor ¯6J¯6 (= around 8.4). I suppose most people expect the remainder of a division to be in some sense smaller than the divisor. Regarding Jay's idempotency requirement we now have: f←{6J6|⍵} f ¯3 ¯2 ¯3 ¯1 0 1 2 3 3J6 4J6 3J6 5J6 0 ¯5J6 ¯4J6 ¯3J6 f f ¯3 ¯2 ¯3 ¯1 0 1 2 3 3J6 4J6 3J6 5J6 0 ¯5J6 ¯4J6 ¯3J6 f←{5J3|⍵} f ¯3 ¯2 ¯3 ¯1 0 1 2 3 2J3 3J3 2J3 4J3 0 ¯2J5 ¯1J5 0J5 f f ¯3 ¯2 ¯3 ¯1 0 1 2 3 2J3 3J3 2J3 4J3 0 ¯2J5 ¯1J5 0J5 so at least the first modulus seems to work as well. The result is still different from APL2 as reported by Jay, but I can't tell why: IBM APL2: 5J3 ∣ 14J5 1J4 ¯4J1 ¯4J1 ¯4J1 ¯4J1 GNU APL: 5J3 ∣ 14J5 1J4 ¯4J1 1J4 1J4 1J4 But both 1J4 and ¯4J1 are valid remainders. Interestingly Jay's idempotency requirement seems to be fulfilled by both the GNU APL and by IBM APL2, so that that requirement alone does not suffice to tell which result is correct. On the other hand this matter seems to be like discussing if the square root of 4 is 2 or -2 with both answers being correct. Best Regards, Jürgen Sauermann On 06/21/2017 10:25 PM, Frederick Pitts
wrote:
|
- Re: [Bug-apl] Modulo or residue function is not generati... Jay Foad
- Re: [Bug-apl] Modulo or residue function is not gen... Elias Mårtenson
- Re: [Bug-apl] Modulo or residue function is not... Jay Foad
- Re: [Bug-apl] Modulo or residue function is... Elias Mårtenson
- Re: [Bug-apl] Modulo or residue function is not gen... Xiao-Yong Jin
- Re: [Bug-apl] Modulo or residue function is not generati... Juergen Sauermann
- Re: [Bug-apl] Modulo or residue function is not gen... Frederick Pitts
- Re: [Bug-apl] Modulo or residue function is not gen... Frederick Pitts
- Re: [Bug-apl] Modulo or residue function is not... Juergen Sauermann
- Re: [Bug-apl] Modulo or residue function is... Frederick Pitts
- Re: [Bug-apl] Modulo or residue functio... Juergen Sauermann
- Re: [Bug-apl] Modulo or residue fu... Juergen Sauermann
- Re: [Bug-apl] Modulo or residu... Frederick Pitts
- Re: [Bug-apl] Modulo or residu... Jay Foad
- Re: [Bug-apl] Modulo or residu... Louis de Forcrand
- Re: [Bug-apl] Modulo or residu... Juergen Sauermann
- Re: [Bug-apl] Modulo or residu... Frederick Pitts
- Re: [Bug-apl] Modulo or residu... Juergen Sauermann
- Re: [Bug-apl] Modulo or residu... Juergen Sauermann
- Re: [Bug-apl] Modulo or residu... Juergen Sauermann
- Re: [Bug-apl] Modulo or residu... Juergen Sauermann