Relatively Prime Calculator
Check whether two numbers are coprime (share no common factor).
Two integers are relatively prime (coprime) when their only common factor is 1.
The math behind it
Compute the greatest common divisor. If gcd(a, b) = 1 the numbers are coprime, even if neither is prime.
Worked example
14 and 15 share no factor → gcd = 1 → coprime.
FAQ
Must coprime numbers be prime?
No — 14 and 15 are coprime even though both are composite.