Greatest common divisor of $2 + 3i$ and $1-i$ in $\mathbb{Z}[i]$
Here is my attempt at solving this using a generalized Euclid's Algorithm. Does it look alright?
Step 1
$2 + 3i = M(1-i) + N$
$$\frac{2 + 3i}{1-i} = \frac{2 + 3i}{1-i}\frac{1 + i}{1 + i}$$
$$= \frac{-1 + 5i}{2} = -\frac{1}{2} + \frac{5i}{2}$$
Now, this point in the complex plane is equidistant from the nearest four $a + bi \in \mathbb{Z}[i]$, so we can pick any of them to be $M$, I will pick $2i$ for the sake of simplcitiy.
$N = 2 + 3i - M(1 - i) = 2 + 3i - (2i)(1 - i) = 2 + i - 2 = i$
So at the conclusion of step 1 we have $$2 + 3i = 2i(1-i) + i$$
Step 2
$1 - i = M(i) + N$
$\implies M=-1$ and $N = 1$
So at the conclusion of step 1 we have $$1 - i = (-1)(i) + 1$$
Step 3
$i = i(1) + 0$
A remainder of $0$ means we conclude the algorithm. The last non-vanishing remainder was $1$, so that means the GCD of $2 + 3i$ and $1-i$ is $1$?