I want to show that the gcd of $( 8n+19 , 3n+7 ) =1$ $\forall n \in \mathbb{Z}$. I would like to prove this through mathematical induction and generalize it for the set of all integers.
Base Case: $n=1$
$$gcd(8+19,3+7) = gcd(27,10) = 1 $$
Assume $n = k$ holds.
WTS it is also true for $n=k+1$. $$gcd(8k+27,3k+10)=1$$
I am stuck here, please let advise me on how to continue from here. Also I am not sure if mathematical induction is the right approach. If a more elegant approach exists, please let me know.
Is suffices to find $x,y\in \mathbb{Z}$ such that $$ (8n+19)x+(3n+7)y=1 $$ that is $n(8x+3y)+(19x+7y)=1$. In order to do so, let us find $x,y$ such that $$ \begin{cases} 8x+3y=0\\ 19x+7y=1 \end{cases} $$ And the solution of the last system is $x=3$, $y=-8$.