કોઇપણ ગણિતની સમસ્યા ઉકેલો
સમીકરણો, ડેરિવેટીવ્સ, ઇન્ટેગ્રલ્સ, મેટ્રિક્સ, ત્રિકોણો, પ્રારંભિક સંખ્યાઓ, આંકડાઓ - અથવા શબ્દ સમસ્યા કે જે શિક્ષક ભાગોમાં વહેંચે છે.
પગલું દ્વારા પગલું
- \gcd(4, 6)
Use Euclid's algorithm: replace the larger number by its remainder on division by the smaller, until the remainder is 0.
- 6 = 1 \times 4 + 2
Divide 6 by 4: quotient 1, remainder 2.
- 4 = 2 \times 2 + 0
Divide 4 by 2: quotient 2, remainder 0.
- \gcd(4, 6) = 2
The last non-zero remainder is 2.
જવાબ બતાવો
\gcd(4, 6) = 2