GCD
The function GCD returns the greatest common divisor of one or more Numbers.
This function takes a Number or Numbers as input. It returns the greatest common divisor as a Number output.
Declaration
Parameters
first_number, second_number, nth_number (type: at least one Number
) The numbers to compute the greatest common divisor for.
Return Values
greatest_common_divisor (type: Number
) The greatest common divisor
Examples
The numbers six, nine, and 15 are all divisible by the number three.
The numbers five, ten, and 15 are all divisible by the number five.
While the numbers 15, 30, and 45 are all divisible by both three and five, the largest divisor is 15.
Between the numbers two, three, and four, the largest common divisor is one, as any number is divisible by one.
The greatest common divisor of the number 15 is 15, as any number is divisible by itself.
Last updated