gmp_invert

(PHP 4 >= 4.0.4, PHP 5)

gmp_invertInverse by modulo

Description

resource gmp_invert ( resource $a , resource $b )

Computes the inverse of a modulo b.

Parameters

a

It can be either a GMP number resource, or a numeric string given that it is possible to convert the latter to a number.

b

It can be either a GMP number resource, or a numeric string given that it is possible to convert the latter to a number.

Return Values

A GMP number on success or FALSE if an inverse does not exist.

Examples

Example #1 gmp_invert() example

<?php
echo gmp_invert("5""10"); // no inverse, outputs nothing, result is FALSE
$invert gmp_invert("5""11");
echo 
gmp_strval($invert) . "\n";
?>

The above example will output:

9

Коментарии

Example #2 gmp_invert() example
<?php
echo gmp_invert("5""10"); // no inverse, outputs nothing, result is FALSE

It means (mod 10 1. And with this function we want a value for xbecause of mod 10x should be {1.10-1(9)}, so :

1 mod 10 
2 mod 10 0
3 mod 10 5
4 mod 10 0
5 mod 10 5
6 mod 10 0
7 mod 10 5
8 mod 10 0
9 mod 10 5
We don
't have any 1 in the results. so it will be False.

$invert = gmp_invert("5", "11");

echo gmp_strval($invert) . "\n";
?>

The above example will output:

9

5 * 9 mod 11 = 1
2020-04-06 14:31:04
http://php5.kiev.ua/manual/ru/function.gmp-invert.html

    Поддержать сайт на родительском проекте КГБ