Formulary

 Math and Physics Calculators

| Start: Formulary | Imprint & Privacy


 
Anzeige



Calculate the Greatest Common Divisor (gcd)


Algorithm:
function gcd(m,n)
{
    if (n==0)
        return m;
    else
        return gcd(n, m%n);
}
a:
b:
gcd (a,b):

Please enter a and b, the gcd will be calculated.




The calculators use . and , als decimal separators.


Formulary and calculators math and physics.
© jumk.de Webprojects | German: Formelsammlung Mathe & Physik



Anzeige