Friday, January 8, 2016

elementary number theory - Minimize LCM / GCD



If n and k are positive integers such that 5<nk<6, then what is the smallest possible value of lcm[n,k]gcd(n,k)?



I am really not sure where to start. I know that in order to create the minimum value, n and k should share a common factor. However, I keep plugging in numbers to no avail. Help is greatly appreciated.


Answer



First of all all fractions can be put into lowest terms.




Second of all If nk=ab and gcd(n,k)=d and gcd(a,b)=e and a=ae;b=be;n=nd;k=kd, then ab=nkaebe=ndkdab=nk and both are in lowest terms. So a=n and b=k.



Third of all. lcm[n,k]gcd(n,k)=nkdd=nk and lcm[a,b]gcd(a,b)=abee=ab=nk.



So we might as well assume nk is in lowest terms.



So we have 5<nk<6 and n,k is in lowest terms and we want to find the least possible value of nk.



5<nk<6




5k<n<6k.



So kn>k(5k)=5k2.



As there is no possible n so that 5<n1<6, the smallest possible value of k is 2 and if 5<n2<6 we must have n=11. That is one possible solution.



In that case nk=112=22. (And notice: 22>522). Is that the smallest possible value?



If k3 we will have kn>5k2532=45>22.




So, yes, 22 is the smallest possible value.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...