Given:
$\ \ a$ is even
$\ \ \color{#90f}{6a+11b=5}$
$\ \ \color{#0af}{a\equiv b\pmod{\! 5}}$
Q: Calculate $\gcd(2a+4b,2a+8b)$
My try:
We know there is some $i$ such that $a=2i$, plus from 3 we know there is some $j$ such that: $a-b=5j$ which means $b=a-5j=2i-5j$. From 2, we get: $34i-55j=5$
So, $$\gcd(2a+4b,2a+8b)=\gcd(12i-20j,20i-40j).$$
I'm stuck here, how to continue?
Use the property that $\gcd(m,n) = \gcd(m \mod n , n)$.
$$ (2a + 8b) \mod (2a+4b) = 4b \mod (2a+4b)$$
So, we have:
$$ \gcd(2a+ 4b, 2a+8b) = \gcd(2a+4b,4b)$$
Repeating the process, we have $$ \gcd(2a+4b,4b) = \gcd(2a,4b)= 4\gcd( \frac{a}{2},b)$$
Can you finish now?