For example, there is already a method of showing that gcd(a,b) = gcd (c,d) in general if you show that, say, gcd(a,b) being divisible by k is equivalent to gcd(c,d) being divisible by k. Why? Because the set of all common divisors of a and b is equal to the set of all common divisors of c and d. Thus, the greatest elements are therefore going to be equal.
However, I want to know if there is a similar approach for doing gcd(a,b) = c where you cannot just use the Euclidean Algorithm.
Let's say you something like wanting to show that gcd($ab - 1, bc^2 - 2$) = $ba^{gcd(a,b)} - c$ where you have absolutely no idea what the values are. I'm just using it as a completely made up example. I thought at first the anti-symmetric principle of relation | (division) would've worked, but it turned out it didn't.