Common factors are positive integers that divide evenly into two or more numbers without leaving a remainder. They are fundamental concepts in number theory and have practical applications in various mathematical operations, including fraction simplification and problem-solving in algebra.
Formula for Finding Common Factors
To find the common factors of two numbers \(a\) and \(b\):
Find the factors of \(a\): \(F(a) = \{x : a \bmod x = 0, 1 \leq x \leq a\}\)
Find the factors of \(b\): \(F(b) = \{y : b \bmod y = 0, 1 \leq y \leq b\}\)
Find the intersection: \(CF(a,b) = F(a) \cap F(b)\)
Where:
\(F(a)\) and \(F(b)\) are the sets of factors for \(a\) and \(b\) respectively