HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-02-28
1 <p>The greatest common divisor (GCD) obeys certain mathematical properties. Here are a few important ones:</p>
1 <p>The greatest common divisor (GCD) obeys certain mathematical properties. Here are a few important ones:</p>
2 <p><strong>Commutative Property</strong></p>
2 <p><strong>Commutative Property</strong></p>
3 <p>Since the order of the numbers does not change the final result, GCD is commutative, i.e., GCD \( (a, b) = \) GCD\( (b, a)\)</p>
3 <p>Since the order of the numbers does not change the final result, GCD is commutative, i.e., GCD \( (a, b) = \) GCD\( (b, a)\)</p>
4 <p>For example: GCD\((12, 18) = \).GCD\((18, 12) = 6\)</p>
4 <p>For example: GCD\((12, 18) = \).GCD\((18, 12) = 6\)</p>
5 <p><strong>Associative Property</strong></p>
5 <p><strong>Associative Property</strong></p>
6 <p>The GCD is associative because the grouping of numbers does not change the result, i.e., GCD (\(a, \)GCD\((b, c)) =\) GCD(GCD\( (a, b), c)\)</p>
6 <p>The GCD is associative because the grouping of numbers does not change the result, i.e., GCD (\(a, \)GCD\((b, c)) =\) GCD(GCD\( (a, b), c)\)</p>
7 <p>For example,</p>
7 <p>For example,</p>
8 <ul><li>First Grouping: GCD(\(8,\) GCD \((12,16))\)</li>
8 <ul><li>First Grouping: GCD(\(8,\) GCD \((12,16))\)</li>
9 </ul><p>GCD\((12, 16) = 4\)</p>
9 </ul><p>GCD\((12, 16) = 4\)</p>
10 <p>GCD \((8, 4) = 4\)</p>
10 <p>GCD \((8, 4) = 4\)</p>
11 <p>So, GCD(8, GCD \((12, 16)) = 4\)</p>
11 <p>So, GCD(8, GCD \((12, 16)) = 4\)</p>
12 <ul><li> Second Grouping: GCD(GCD\((8, 12), 16)\)</li>
12 <ul><li> Second Grouping: GCD(GCD\((8, 12), 16)\)</li>
13 </ul><p>GCD\((8, 12) = 4\)</p>
13 </ul><p>GCD\((8, 12) = 4\)</p>
14 <p>GCD\((4, 16) = 4\)</p>
14 <p>GCD\((4, 16) = 4\)</p>
15 <p>So, GCD(GCD\((8, 12), 16) = 4\)</p>
15 <p>So, GCD(GCD\((8, 12), 16) = 4\)</p>
16 <p>GCD\( (8,\) GCD\((12, 16)) =\) GCD(GCD\((8, 12), 16)\)</p>
16 <p>GCD\( (8,\) GCD\((12, 16)) =\) GCD(GCD\((8, 12), 16)\)</p>
17 <p>Hence, GCD is associative.</p>
17 <p>Hence, GCD is associative.</p>
18 <p><strong>Distributive Property (Over LCM)</strong></p>
18 <p><strong>Distributive Property (Over LCM)</strong></p>
19 <p>The GCD is distributive over the Least Common Multiple (LCM). </p>
19 <p>The GCD is distributive over the Least Common Multiple (LCM). </p>
20 <p>GCD\( (a, \)LCM\( (b, c)) = \)LCM (GCD \((a, b)\), GCD\((a, c)).\)</p>
20 <p>GCD\( (a, \)LCM\( (b, c)) = \)LCM (GCD \((a, b)\), GCD\((a, c)).\)</p>
21 <p>For example: GCD\( (8, \)LCM\( (12, 18)) = \)LCM (GCD \((8, 12),\) GCD \((8, 18))\)</p>
21 <p>For example: GCD\( (8, \)LCM\( (12, 18)) = \)LCM (GCD \((8, 12),\) GCD \((8, 18))\)</p>
22 <p>Let’s look at the steps involved:</p>
22 <p>Let’s look at the steps involved:</p>
23 <ul><li>LCM \((12, 18) = 36 \) </li>
23 <ul><li>LCM \((12, 18) = 36 \) </li>
24 <li>GCD\( (8, 12) = 4\) </li>
24 <li>GCD\( (8, 12) = 4\) </li>
25 <li>GCD\( (8, 18) = 2\) </li>
25 <li>GCD\( (8, 18) = 2\) </li>
26 <li>LCM \((4, 2) = 4\) </li>
26 <li>LCM \((4, 2) = 4\) </li>
27 <li>GCD\( (8, 36) = 4\) </li>
27 <li>GCD\( (8, 36) = 4\) </li>
28 </ul><p>Therefore, </p>
28 </ul><p>Therefore, </p>
29 <p>GCD \((8,\) LCM\( (12, 18))\) = LCM (GCD\( (8, 12)\), GCD \((8, 18)) \)holds true.</p>
29 <p>GCD \((8,\) LCM\( (12, 18))\) = LCM (GCD\( (8, 12)\), GCD \((8, 18)) \)holds true.</p>
30 <p><strong>Divisibility Property</strong></p>
30 <p><strong>Divisibility Property</strong></p>
31 <p>According to the divisibility property, if d is given as GCD \((a, b),\) then it means d divides both a and b evenly. \(d ∣ a \) and \(d ∣ b\) where d = GCD (\(a, b)\).</p>
31 <p>According to the divisibility property, if d is given as GCD \((a, b),\) then it means d divides both a and b evenly. \(d ∣ a \) and \(d ∣ b\) where d = GCD (\(a, b)\).</p>
32 <p>Example: If d = GCD \((18, 24) = 6\), then \(6 ∣ 18\) and \( 6 ∣ 24\). </p>
32 <p>Example: If d = GCD \((18, 24) = 6\), then \(6 ∣ 18\) and \( 6 ∣ 24\). </p>
33 <p><strong>GCD with Zero</strong></p>
33 <p><strong>GCD with Zero</strong></p>
34 <p>For any non-zero integer n, the GCD of 0 and n is n. However, the GCD of 0 and 0 is undefined because there is no greatest common divisor in this case.</p>
34 <p>For any non-zero integer n, the GCD of 0 and n is n. However, the GCD of 0 and 0 is undefined because there is no greatest common divisor in this case.</p>
35 <p>GCD\((0, n) = n\), but GCD\((0, 0) =\) undefined. </p>
35 <p>GCD\((0, n) = n\), but GCD\((0, 0) =\) undefined. </p>
36 <p>Example: GCD\((12, 0) = 12\), but GCD\((0, 0)\) is undefined.</p>
36 <p>Example: GCD\((12, 0) = 12\), but GCD\((0, 0)\) is undefined.</p>
37 <p><strong>Multiplicative Property</strong></p>
37 <p><strong>Multiplicative Property</strong></p>
38 <p>According to the multiplicative property of GCD, if a and b are co-prime, then:</p>
38 <p>According to the multiplicative property of GCD, if a and b are co-prime, then:</p>
39 <p>GCD\( (a × b, c) =\) GCD\( (a, c) ×\) GCD \((b, c). \)</p>
39 <p>GCD\( (a × b, c) =\) GCD\( (a, c) ×\) GCD \((b, c). \)</p>
40 <p>For example: Consider a = 7, b = 5, and c = 20.</p>
40 <p>For example: Consider a = 7, b = 5, and c = 20.</p>
41 <p>Since 7 and 5 are co-prime;</p>
41 <p>Since 7 and 5 are co-prime;</p>
42 <p>(GCD \((7,5) = 1)\), GCD \((7 × 5, 20) =\) GCD \((7,20) ×\) GCD \((5,20)\) \(= 1 × 5 = 5 \)</p>
42 <p>(GCD \((7,5) = 1)\), GCD \((7 × 5, 20) =\) GCD \((7,20) ×\) GCD \((5,20)\) \(= 1 × 5 = 5 \)</p>
43 <p>Hence, the property holds true.</p>
43 <p>Hence, the property holds true.</p>
44  
44