Help for this page

Select Code to Download


  1. or download this
      use Math::Pari qw/ PARI Mod /;
      my($n, $p) = map PARI($_), (3, 17);
      my $recip = PARI(1) / Mod($n, $p);
      print "1 / $n == $recip\n";
    
  2. or download this
      $int = int($recip);
    PARI:   ***   incorrect type in comparison. at -e line 1.
    ...
    
      $int = pari2iv($recip);
    PARI:   ***   incorrect type in gtolong. at -e line 1.