

InterviewSolution
Saved Bookmarks
1. |
Is 7, 8, 9, 11 are pairwise relatively prime.(a) True(b) FalseThis question was addressed to me during an online exam.I'd like to ask this question from Number Theory in division Number Theory and Cryptography of Discrete Mathematics |
Answer» RIGHT CHOICE is (a) True For explanation I would say: gcd(7, 9) = gcd(8, 9) = gcd(9, 11) = gcd(11, 7) = 1. The numbers 7 and 11 are prime and numbers 8 and 9 are relatively prime. |
|