GCD
Last updated
Was this helpful?
Last updated
Was this helpful?
The function GCD returns the greatest common divisor of one or more Numbers.
This function takes a as input. It returns the greatest common divisor as a Number output.
first_number, second_number, nth_number (type: at least one Number
) The numbers to compute the greatest common divisor for.
greatest_common_divisor (type: Number
) The greatest common divisor
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.