-1

I am not sure if I understand it correctly but isn't that very simple we can take gcd(2,3) = 1, and our c = 0, and gcd(0,0) does not exist?

Or my thinking process is wrong?

KReiser
  • 65,137
Mr.S
  • 17
  • 4

1 Answers1

0

No.

Think of it this way: "$x\mid y$" is defined to be equivalent to "$y=xz$ for some $z\in D$". But $0=0z$ for all $z\in \Bbb Z$, so $0\mid 0$ (despite $\frac{0}{0}$ being undefined in this context). Divisors of $a$ are less than or equal to $a$, for all $a$. It follows that

$$\gcd(0,0)=0.$$

Shaun
  • 44,997