Greatest Common Divisor (GCD) Calculator

Posted by Dinesh on

This simple JavaScript calculator calculates the greatest common divisor (GCD) of the given two non-negative integers.

In mathematics, the greatest common divisor of two or more integers, which are not all zero, is the largest positive integer that divides each of the integers. For example, the gcd of 8 and 12 is 4.

Formula:

gcd(a,b)=a×blcm(a,b)

where, a,b = positive integers