Given Bézout's identity, how do I find the $x,y$, I already performed the euclidean algorithm. So.
- 21 = 1 * 13 + 8
- 13 = 1 * 8 + 5
- 8 = 1 * 5 + 3
- 5 = 1 * 3 + 2
- 3 = 1 * 2 + 1
- 2 = 1 * 1 + 1
- 1 = 1 * 1 + 0
I am not sure how to find the x,y though I tried starting from 1 = 2 - 1 and then substituting 2 as 3 - 1 and so on but I wasn't getting anywhere I know I need to somehow get 21*some number + 13 * some number but I am confused on how to start.