Fil:GCD through successive subtractions.svg

Fra Wikisida.no
Hopp til navigering Hopp til søk
Opprinnelig fil (SVG-fil, standardstørrelse 660 × 825 piksler, filstørrelse: 5 KB)

Denne filen er fra Wikimedia Commons og kan brukes av andre prosjekter. Beskrivelsen fra filbeskrivelsessida vises nedenfor.

Beskrivelse

Beskrivelse
English: The set of common divisors of two given natural numbers is the set of divisors of one and only one natural number, called the “greatest common divisor” of the initial pair. To prove its existence, it is sufficient to exhibit we can always calculate it, from any pair of natural numbers. How to understand “greatest”? The order in question is divisibility: a partial order on set ℕ of natural numbers. For example, 2 is a common divisor that can be written: We will soon calculate the greatest common divisor Zero is multiple of any natural number, in other words, zero is the greatest element of ℕ for divisibility. is not the greatest natural number for the usual order relation, of which the symbol The least element of ℕ for divisibility is 1.

the set of common divisors are multiples of any element is also a multiple Conversely, every common divisor is also a divisor In other words, also the set of common divisors

Under the algorithm of the image, is replaced and then by repeating the process replaced And then replaced Finally the step‑by‑step process replaces the initial pair goes out of the loop of subtractions, and affirms:

Instead of replacing with the four successive pairs: we could get directly the last pair by the Euclidean division It does not matter there are 4 successive subtractions of 6, we can ignore 4: the quotient value of this Euclidean division. Actually, every sequence of subtractions of a same number can be replaced with an Euclidean division by this number. Thus we discover the more known algorithm of GCD through successive Euclidean divisions, by improving the present algorithm of subtractions.

A novice in coding can copy and paste in a window dedicated to JavaScript one of the following comparisons, and then command the execution: 30 < 24; or 6 == 0; or 6 < 24. Within the image, six symbols look like assignments in OCaml. Here is an example of assignment in JavaScript: r = 30; commanding to store into the object of type Number and value 30. Everyone can download Firefox, and then open a Firefox window dedicated to JavaScript code. In this special window, we can copy and paste the following translation from the flow chart into JavaScript.

/* To open a Firefox window
 dedicated to JavaScript code:  Shift + F4  */

d = r = k = 182; p = 238;  // example of input values,
// that we can replace with two other natural numbers
if( s = p){  // if the common value of s and p is not zero
while(r){  // while the value of r is not zero
if(r < s){  // in this case, reverse the values of r and s
d = s; s = r; r = d }
r = r-s }  // end of the loop 'while(r)'
d = s }  // end of the block that begins with 'if( s = p)'
"   GCD("+ k +", "+ p +") = "+ d;  // output: a String object

// Keyboard shortcut in Firefox to execute the code:  Ctrl + L

On the image top,  means that  of natural numbers. The previous JavaScript code works only if the two input values are natural numbers. Here is an improvement of the previous code, where the input values assigned are verified.

try{ //  in case of error in this block,
//  execution failure of this code block, go to 'catch'
d = r = k = 408; p = 255;  // example of input values
var b;  // global scope declaration
s = function(n){
// to test the value of parameter n: is it a natural number?
b = n.constructor == Number; // Boolean value
if( !b // first incorrect case
  || n < 0 || n != Math.floor(n)  // other incorrect cases
) throw n
//  in one of the previous cases, n is thrown as error
};  // end of assignment to variable s
s(k); s(p);  // verifications
if( s = p){  // if the common value of s and p is not zero
while(r){
if(r < s){d = s; s = r; r = d} r = r-s } d = s }
"  GCD("+ k +", "+ p +") = "+ d
}catch(e){  // in case of error (if e is thrown)
"  "+( b ? e +"  is not a natural number.":
"  Incorrect code.")
}
The GCD operation is classically used to simplify a fraction. is the irreducible form Two natural numbers of which the GCD is 1 are called coprime integers.
 
Français : Voir la version en français…
Dato
Kilde Eget verk
Opphavsperson Arthur Baelde
Andre versjoner
SVG utvikling
InfoField
 SVG-koden er gyldig.
 This /Baelde was created with a text editor.

Lisensiering

Arthur Baelde, rettighetsinnehaver av dette arbeidet, publiserer det herved under følgende lisens:
w:no:Creative Commons
navngivelse del på samme vilkår
Denne filen er lisensiert under lisensen Creative Commons Navngivelse-DelPåSammeVilkår 4.0 Internasjonal.
Navngivelse:
Du står fritt:
  • til å dele – til å kopiere, distribuere og overføre verket
  • til å blande – til å endre verket
Under de følgende betingelsene:
  • navngivelse – Du må kreditere verket på passende vis, lenke til lisensen og indikere hvorvidt det har blitt gjort endringer. Du kan gjøre det på enhver rimelig måte, men ikke på en måte som antyder at lisensgiveren støtter deg eller din bruk av verket.
  • del på samme vilkår – Dersom du remikser, omarbeider eller på annen måte bygger på dette verket, må du kun distribuere resultatet under den samme eller en samsvarende lisens som denne.

Bildetekster

Legg til en kort forklaring på hva filen representerer
The algorith transforms any pair of positive integers into another having the same common divisors, and including a decisive 0,  through a process able to interchange two integers, or remplace the greatest with the positive difference of the two.jm

Elementer som er med i denne fila

motiv

5 165 byte

825 piksel

660 piksel

image/svg+xml

c583b794c4f66ad732df5117f364c8bb8e54de72

Filhistorikk

Klikk på et tidspunkt for å vise filen slik den var på det tidspunktet.

Dato/klokkeslettMiniatyrbildeDimensjonerBrukerKommentar
nåværende9. feb. 2025 kl. 12:18Miniatyrbilde av versjonen fra 9. feb. 2025 kl. 12:18660 × 825 (5 KB)wikimediacommons>Arthur Baelde the  latest  version  is  the  best  one 

Den følgende siden bruker denne filen:

Metadata