Saturday, February 6, 2016

elementary number theory - Prove that if gcd(a,b)=1 then gcd(ab,c)=gcd(a,c)gcd(b,c)


Let a,b,c be integers. Prove that if gcd(a,b)=1 then gcd(ab,c)=gcd(a,c)gcd(b,c)


First time asking here. I'm not sure what your policies are on general homework help but I truly am stuck.


So far I have shown gcd(a,c)gcd(b,c) as an integer combination of ab and c. So if I can show that gcd(a,c)gcd(b,c) divides ab and c I can use the proof that if an integer d is a common divisor of a and b, and d=ax+by for some x and y, that d=gcd(a,b). However I don't really know where to start with this. Any help would be appreciated.



Answer



I'm going to write (m,n) for gcd(m,n) throughout what follows.


You want to show that (a,c)(b,c)ab,c. From the definition of (m,n), it's easy to show that (a,c)(b,c)ab (since (a,c)a and (b,c)b). So it really boils down to showing that (a,c)(b,c)c.


Since (a,c),(b,c)c, you can write c=r(a,c)=s(b,c) for some integers r and s. Therefore, to show that (a,c)(b,c)c, it's enough to show that (b,c)r=c/(a,c). This is equivalent to showing that p \nmid (a,c) for any prime number dividing (b,c). This follows from a and b being coprime. (Why?)


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f \colon A \rightarrow B and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...