0

So I started with $gcd(10n-1,5n+6)$ States that $d|(10n-1,5n+6)$ Which also implies that $d|10n-1$ and $d|5n+6$. Now I dont know how to show gcd of equals to 1 or 13.

Arya
  • 57
  • $$\gcd(a,b) = \gcd(a,2b-a) = \gcd(a,13) \in {1,13} $$ since $13$ is a prime number. If $n\equiv 4\pmod{13}$, $13\mid(10n-1)$. – Jack D'Aurizio Oct 26 '16 at 06:34

2 Answers2

1

So, $d$ must divide $$2(5n+6)-(10n-1)$$

The basic idea is to eliminate $n$ from the relation to find a constant as dividend.

0

Use that $(a,b)=(b, a-b).$

Then we have

$$ (10n-1,5n+6)=(5n+6,5n-7)=(5n-7,13)=13 \text{ or } =1. $$

Leox
  • 8,120