ريا طي مسائل کو حل کريں
مساوات ، ديو ري کٹ ، انٽي گرل ، ميٹرکس ، مثلث ، پرائم ، اعداد و شمار يا لفظي مسئلہ جو تو تير پارٹ ميں تقسيم کر تا هے
قدم ب قدم
- \gcd(2, 3)
Use Euclid's algorithm: replace the larger number by its remainder on division by the smaller, until the remainder is 0.
- 3 = 1 \times 2 + 1
Divide 3 by 2: quotient 1, remainder 1.
- 2 = 2 \times 1 + 0
Divide 2 by 1: quotient 2, remainder 0.
- \gcd(2, 3) = 1
Euclid gives the gcd.
- \operatorname{lcm}(2, 3) = \frac{2 \times 3}{\gcd(2, 3)} = \frac{6}{1} = 6
lcm × gcd = a × b, so divide the product by the gcd.
جواب کھوليں
\operatorname{lcm}(2, 3) = 6