Fil:GCD through successive subtractions.svg

Page contents not supported in other languages.
Fra Wikipedia, den frie encyklopædi

Fuld opløsning(SVG fil, basisstørrelse 660 × 825 pixels, filstørrelse: 5 KB)


Denne fil er fra Wikimedia Commons

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 arbejde
Forfatter Arthur Baelde
Andre versioner
SVG udvikling
InfoField
 
The SVG code is valid.
 
This /Baelde was created with a text editor.

Licensering

Arthur Baelde, dette værks ophavsretsindehaver, udgiver hermed værket under den følgende licens:
w:da:Creative Commons
kreditering deling på samme vilkår
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
Kreditering: Arthur Baelde
Du må frit:
  • at dele – at kopiere, distribuere og overføre værket
  • at remixe – at tilpasse værket
Under følgende vilkår:
  • kreditering – Du skal give passende kreditering, angive et link til licensen, og oplyse om der er foretaget ændringer. Du må gøre det på enhver fornuftig måde, men ikke på en måde der antyder at licensgiveren godkender dig eller din anvendelse.
  • deling på samme vilkår – Hvis du bearbejder, ændrer eller bygger videre på dette værk, skal du distribuere dine bidrag under den samme eller en kompatibel licens som originalen.

Captions

Tilføj en kort forklaring på en enkelt linje om hvad filen viser
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.

Elementer som er med i denne fil

afbilder

Filhistorik

Klik på en dato/tid for at se filen som den så ud på det tidspunkt.

Dato/tidMiniaturebilledeDimensionerBrugerKommentar
nuværende26. apr. 2024, 15:12Miniature af versionen fra 26. apr. 2024, 15:12660 × 825 (5 KB)Arthur Baelde more legible 
27. jun. 2018, 11:06Miniature af versionen fra 27. jun. 2018, 11:06660 × 825 (5 KB)Arthur BaeldeUser created page with UploadWizard

Der er ingen sider der bruger denne fil.

Global filanvendelse

Følgende andre wikier anvender denne fil:

Metadata