Talk:Binary GCD algorithm: Difference between revisions

Content deleted Content added
gcd(0,0)
Line 1:
== gcd(0,0) ==
 
gcd(x,y) is the integer, that is divided by all common divisors of x and y.
Thus gcd(0,0)=0, because the common divisors of 0 and 0 are all natural numbers, and these are also divisors of 0.
 
== unsigned integers ==