I have a problem which is to find the GCD of three numbers, each of which have large exponents:
$$ GCD( 2^{300}, 3^{200}, 2^{200})$$
What I have tried:
So far, I think there are two main steps here: (1) address the fact that its three numbers, and (2) attempt to get the GCD given the exponents. So first, I believe I can use Euclids algorithm:
Now, I would be working with only two values (which is what we have practiced so far). Now, I would have:
$$ GCD( 3^{200}, 2^{300})$$
What I am getting stuck is on the following step, and how to proceed, assuming this first step is correct. What I am inclined to do based on what we practice so far is to find the primes they have in common, but where I get stuck is how to do that for exponents, when searching for the GCD.
Any guidance would be appreciated!