કોઇપણ ગણિતની સમસ્યા ઉકેલો

સમીકરણો, ડેરિવેટીવ્સ, ઇન્ટેગ્રલ્સ, મેટ્રિક્સ, ત્રિકોણો, પ્રારંભિક સંખ્યાઓ, આંકડાઓ - અથવા શબ્દ સમસ્યા કે જે શિક્ષક ભાગોમાં વહેંચે છે.

Gcd(4, 6)

4,\ 6

પગલું દ્વારા પગલું

  1. \gcd(4, 6)

    Use Euclid's algorithm: replace the larger number by its remainder on division by the smaller, until the remainder is 0.

  2. 6 = 1 \times 4 + 2

    Divide 6 by 4: quotient 1, remainder 2.

  3. 4 = 2 \times 2 + 0

    Divide 4 by 2: quotient 2, remainder 0.

  4. \gcd(4, 6) = 2

    The last non-zero remainder is 2.

જવાબ બતાવો
\gcd(4, 6) = 2