($\gcd$ stands for greatest common divisor)
So, I know when you calculate the greatest common divisor, the answer can be written as $\gcd(a, b) = αa + βb$ for some $α$ and $β$. My question is what a specific formula would be to calculate both of these values.
I was given $a_k = α_k · a + β_k · b$, where $a_0, a_1, \ldots$ is the sequence of values produced by the Euclidean Algorithm. I have to somehow use $a_{k+1} = α_{k+1} · a + β_{k+1} · b$ to work out formulas for $a_{k+1}$ and $β_{k+1}$ in terms of $k$ and $k - 1$. I can't figure out how to separate $a_{k+1}$ and $β_{k+1}$ to create two separate formulas, and after working through a problem using the Euclidean Algorithm I didn't see any patterns that would help me with this.
Have a look at the extended Euclidean Algorithm.
You can try a live version at WolframAlpha entering "egcd(a,b)". This Example will return
which means $$ \gcd(7,11) = 1 = (-3) \cdot 7 + 2 \cdot 11 = s \cdot a + t \cdot b $$
In this example the Bézout coefficients $s$, $t$ show up in the second last row of the $s_i$ and $t_i$ intermediate results.