I'm reviewing a proof of the greatest common divisor. The textbook describes $\gcd(a,b)$ as the smallest positive element in the set $\{ax+by : x,y \in \mathbb{Z}\}$. I'm not quite understanding this.
I tried to play with some numbers for example, $\gcd(55, 100)$ then plugging into the set:
$\{55x+100y : x,y \in \mathbb{Z}\}$. but not sure where to go from here or how this set helps me understand gcd.
The integers are ordered by "$\ge$"-relation. Your set $S:= \{ax+by : x,y \in \mathbb{Z}\}$ is a subset of integers, so it inherits this relation. You essentially looking for an element $g \in S$ with $g >0$ and such that for all $s \in S$ with $s>0$: $s \ge g$. The Euclidean algorith (https://en.wikipedia.org/wiki/Euclidean_algorithm) provides the method to calculate it. In your example it's $5$.