gmp_sqrtrem
Description
The gmp_sqrtrem of GMP for PHP calculates the square root with the remainder.
Syntax
gmp_sqrtrem(
GMP|int|string $num
): arrayParameters
num
The number being square rooted.
A GMP object, an int or a numeric string.
Return
Returns an array where the first element is the integer square root of num and the second is the remainder (i.e., the difference between num and the first element squared).
Examples
1 · num · GMP
<? $num = 8; $num = gmp_init($num); $return = gmp_sqrtrem($num); var_dump($return);
array(2) {
[0]=>
object(GMP)#2 (1) {
["num"]=>
string(1) "2"
}
[1]=>
object(GMP)#3 (1) {
["num"]=>
string(1) "4"
}
}
2 · num · int
<? $num = 8; $return = gmp_sqrtrem($num); var_dump($return);
array(2) {
[0]=>
object(GMP)#1 (1) {
["num"]=>
string(1) "2"
}
[1]=>
object(GMP)#2 (1) {
["num"]=>
string(1) "4"
}
}
3 · num · string
<? $num = "8"; $return = gmp_sqrtrem($num); var_dump($return);
array(2) {
[0]=>
object(GMP)#1 (1) {
["num"]=>
string(1) "2"
}
[1]=>
object(GMP)#2 (1) {
["num"]=>
string(1) "4"
}
}
Links
Related
GMP
- gmp_abs
- gmp_add
- gmp_and
- gmp_binomial
- gmp_clrbit
- gmp_cmp
- gmp_com
- gmp_div
- gmp_div_q
- gmp_div_qr
- gmp_div_r
- gmp_divexact
- gmp_export
- gmp_fact
- gmp_gcd
- gmp_gcdext
- gmp_hamdist
- gmp_import
- gmp_init
- gmp_intval
- gmp_invert
- gmp_jacobi
- gmp_kronecker
- gmp_lcm
- gmp_legendre
- gmp_mod
- gmp_mul
- gmp_neg
- gmp_nextprime
- gmp_or
- gmp_perfect_power
- gmp_perfect_square
- gmp_popcount
- gmp_pow
- gmp_powm
- gmp_prob_prime
- gmp_random_bits
- gmp_random_range
- gmp_random_seed
- gmp_root
- gmp_rootrem
- gmp_scan0
- gmp_scan1
- gmp_setbit
- gmp_sign
- gmp_sqrt
- gmp_strval
- gmp_sub
- gmp_testbit
- gmp_xor