GCD - Euclidean Algorithm (Method 2)

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 ธ.ค. 2024

ความคิดเห็น • 72

  • @alberttoo5807
    @alberttoo5807 3 ปีที่แล้ว +70

    Thank you I swear your videos have been saving my semesters😂

    • @brienaustinclayton
      @brienaustinclayton 11 หลายเดือนก่อน +4

      That too before 2hrs

    • @df8xentono68
      @df8xentono68 11 หลายเดือนก่อน +2

      Tomorrow is my dm exam😂

    • @DwipBonik
      @DwipBonik 6 หลายเดือนก่อน

      @@df8xentono68 tommorow is mine bro

  • @prajapatikaushik6674
    @prajapatikaushik6674 ปีที่แล้ว +21

    The GCD of 529 and 123 is 1 and so they are relatively prime numbers.

  • @alokendughosh7013
    @alokendughosh7013 2 ปีที่แล้ว +26

    Answer is 1, so 529 and 123 are relatively prime.😊

  • @sravanthip5082
    @sravanthip5082 8 หลายเดือนก่อน +5

    All the best 4r ur exam😂... @happy ni8 out🎉😂

  • @ashishlkhmn48
    @ashishlkhmn48 3 ปีที่แล้ว +8

    The pre-requisite of a>b is not necessary in Euclid's algorithm. You can take any two values in a and b and the answer will be correct.. The only thing is that in case of a

    • @DandelionHope
      @DandelionHope 3 ปีที่แล้ว

      Yeah

    • @ucanhly1166
      @ucanhly1166 2 ปีที่แล้ว

      true i try this by myself it works.So incredible!!

    • @rajeevranjan9172
      @rajeevranjan9172 2 หลายเดือนก่อน

      yes when the first time else part run it makes a>b if initially b>a

  • @mdafeef3911
    @mdafeef3911 3 ปีที่แล้ว +14

    GCD(529,123) = 1

  • @c.c.c11
    @c.c.c11 11 หลายเดือนก่อน +1

    GCD (529,123) = 1.

  • @David-qq3uo
    @David-qq3uo 3 ปีที่แล้ว +4

    Wonderful! Thank you for your Services.

  • @perumalma4707
    @perumalma4707 2 ปีที่แล้ว

    Your neso academy teaching methods are really super

  • @abinayabalamahendran5065
    @abinayabalamahendran5065 2 ปีที่แล้ว +5

    Thank you for these videos really very helpful for my PhD coursework

  • @sridamul1331
    @sridamul1331 5 หลายเดือนก่อน +1

    Hey, the algorithm also works for b > a. There is no requirement of prerequisite a > b.

  • @devpriyashivani1855
    @devpriyashivani1855 ปีที่แล้ว +3

    GCD(529, 123) = 1
    GCD(529, 123) = GCD(123, 529%123) = GCD(123, 37)
    GCD(123, 37) = GCD(37, 123%37) = GCD(37, 12)
    GCD(37, 12) = GCD(12, 37%12) = GCD(12, 1)
    GCD(12, 1) = GCD(1, 0) Since, b=0, it will return a=1
    Hence, GCD(529, 123) = 1 Answer

  • @chibuikemchigbo3680
    @chibuikemchigbo3680 2 ปีที่แล้ว +1

    this was so much explained than my teacher in class

  • @darrshanseshathrri3573
    @darrshanseshathrri3573 ปีที่แล้ว

    Two reduce one iteration or recursion, we can end the iteration or recursion by checking if rendering is zero and return b

  • @sujalbalar316
    @sujalbalar316 3 ปีที่แล้ว +5

    Thank you sir
    Keep it up.
    Can you please make video on data encryption standard (DES)?

  • @UMT6174
    @UMT6174 2 ปีที่แล้ว +1

    nice explanation and nice algorithm

  • @tanmaydeopurkar4818
    @tanmaydeopurkar4818 ปีที่แล้ว

    Superb simple explanation. Thank You

  • @UMT6174
    @UMT6174 2 ปีที่แล้ว +3

    way work methode 1 and 2 is same because that of expresion equation . example gcd(a,b) when a>b then we have a=bx+c when c is remainder

  • @debojitbiswastirtho8062
    @debojitbiswastirtho8062 2 ปีที่แล้ว +2

    Thanks a lot ! Really great content

  • @SimpleAwesome-l3i
    @SimpleAwesome-l3i 2 หลายเดือนก่อน

    Thank you sir ❤

  • @sujalbalar316
    @sujalbalar316 3 ปีที่แล้ว +1

    My ens subject's sir was asked about this method in viva today.

  • @kalyanreddy_4024
    @kalyanreddy_4024 3 ปีที่แล้ว

    Fan of this channel

  • @helpingwallahngo5798
    @helpingwallahngo5798 ปีที่แล้ว

    very helpful. Thank you so much

  • @williesanape3900
    @williesanape3900 2 ปีที่แล้ว +1

    crystal clear explanation! Thank you so much.

  • @harshgohil35
    @harshgohil35 2 ปีที่แล้ว

    Nice explanation bruh

  • @ashanhabib4195
    @ashanhabib4195 2 ปีที่แล้ว

    Great bosss thanks for the best video

  • @mahrou616
    @mahrou616 ปีที่แล้ว

    Thank you

  • @itenigneer21
    @itenigneer21 2 ปีที่แล้ว

    If I say that Time complexity of Euclid's method is "logb base a", is it correct ?

  • @bhuppidhamii
    @bhuppidhamii ปีที่แล้ว

    int gcd(int A, int B)
    {
    int maxi=max(A,B);
    int mini=min(A,B);
    if(B == 0 ){
    return A;
    }else{
    return gcd(mini,maxi%mini);
    }
    }

  • @merveillesmbiami1288
    @merveillesmbiami1288 2 ปีที่แล้ว

    thank you very much

  • @skgeddha3207
    @skgeddha3207 3 ปีที่แล้ว +1

    gcd(529,123) = 1

  • @Hosain_Ahmed
    @Hosain_Ahmed 2 ปีที่แล้ว

    Thanks

  • @SequinBrain
    @SequinBrain ปีที่แล้ว

    Using a program someone wrote using a function on Matlab:
    GCD(529,123)
    ans =
    1

  • @Alien.Coderzzz
    @Alien.Coderzzz 7 หลายเดือนก่อน

    Amazing

  • @UMT6174
    @UMT6174 2 ปีที่แล้ว +1

    we can find gcd(a,b) from forming an equation that has a and b where for example a>b then we can make it a=bx+c where if x and c are integers then if we get gcd(b, c ) then surely we can make the equation a=bx+c into factorization form a=(..)(...) for example gcd(b,c)=k then we can make a=k(((b/k) ) ) *x)+c/k) where because k is gcd(b,c) then surely b/k has a remainder of 0 as well as for c/k so at the same time we get gcd(a,b) i.e. gcd( b, c) so that gcd(a,b) = gcd(b,c) and if you want to find gcd(b,c) again, you can make the equation again so you can get gcd(b,c) and so on until the most It's simple, so method 1 is made in the form of a table, actually methods 1 and 2 are basically the same, namely from the equation

  • @siddharthp1
    @siddharthp1 ปีที่แล้ว +1

    Homework Answer is 1.

  • @utilizator1701
    @utilizator1701 3 ปีที่แล้ว +1

    Homework answer: 1.

  • @OmarMohamed-ge2zg
    @OmarMohamed-ge2zg 2 ปีที่แล้ว

    thank you thank you thank you thank youuuuuuuuuuuuu

  • @IOAmitChaurasiya
    @IOAmitChaurasiya 2 ปีที่แล้ว

    H.W ans: gcd(529,123) = 1

  • @stacydevries4241
    @stacydevries4241 11 หลายเดือนก่อน

    Homework answer HCF = 1

  • @gowthamip6688
    @gowthamip6688 3 ปีที่แล้ว +1

    Home work sum ans is 1

  • @aqsanoor8162
    @aqsanoor8162 ปีที่แล้ว

    GCD(529,123)=20

  • @vaddemohan3777
    @vaddemohan3777 ปีที่แล้ว

    def find_gcd(a,b):
    if b==0:
    return a
    else:
    return find_gcd(b,a%b)
    a = 529
    b = 123
    print(find_gcd(a,b))

  • @rajeshprajapati4863
    @rajeshprajapati4863 2 ปีที่แล้ว

    Answer to H.W.
    GCD(529, 123) = 1

  • @Vishal-co8fd
    @Vishal-co8fd 2 ปีที่แล้ว

    15 is The Answer

  • @motivation_with_harsh
    @motivation_with_harsh ปีที่แล้ว

    answer is 1

  • @rithikarithika4514
    @rithikarithika4514 8 หลายเดือนก่อน

    1 is the answer right...

  • @stacydevries4241
    @stacydevries4241 ปีที่แล้ว

    GCD =1

  • @ilyaskhan38
    @ilyaskhan38 2 ปีที่แล้ว

    Osm method

  • @MildredRubio-s6g
    @MildredRubio-s6g 3 หลายเดือนก่อน

    Lewis John Harris Gary Garcia Edward

  • @Umar-nl3ny
    @Umar-nl3ny 2 ปีที่แล้ว

    ahla kalam

  • @yasina63
    @yasina63 ปีที่แล้ว

    83 mod 19 = Reminder is 7. How please can you be more specific? I didn't get it now.

    • @davidthomas6043
      @davidthomas6043 10 หลายเดือนก่อน +2

      If you divide 83 by 19 you get 4 plus remainder of 7.

    • @gotterdammerung1837
      @gotterdammerung1837 6 หลายเดือนก่อน

      83/19 = 4.368421053
      4.368421053 - 4 = 0.368421052 ( calculator did)
      0.368421052 * 19 = 7
      calculator can do with brainlessly

  • @kayleewardfera7660
    @kayleewardfera7660 3 หลายเดือนก่อน

    Anderson Michelle Robinson James Thompson Paul

  • @ahmadmaqsood2069
    @ahmadmaqsood2069 7 หลายเดือนก่อน

    1,0=1

  • @stupid_coder01
    @stupid_coder01 ปีที่แล้ว +1

    #include
    int main(void)
    {
    int num1, num2, gcd;
    printf("Enter the nums: ");
    scanf("%d %d", &num1, &num2 );
    while (num2 !=0 )
    {
    gcd = num1;
    num1 = num2;
    num2 = gcd % num2;
    }
    printf("Gcd is: %d
    ", num1);
    return 0;
    }

  • @SharadDwivedi-yt5rg
    @SharadDwivedi-yt5rg ปีที่แล้ว

    Bamodb

  • @SharadDwivedi-yt5rg
    @SharadDwivedi-yt5rg ปีที่แล้ว

    बमोदबा 😂

  • @monicabattacharya6416
    @monicabattacharya6416 3 ปีที่แล้ว

    Please start teaching FULL STACK DEVELOPMENT COURSE. I am learning now 😌. if you start it now , it will be helpful for many students who are preparing for placements.

  • @preeti4534
    @preeti4534 2 ปีที่แล้ว

    GCD(529, 123) = 1

  • @mihirmathur5855
    @mihirmathur5855 2 ปีที่แล้ว +2

    GCD(529,123)=1

  • @josephwamuti
    @josephwamuti 8 หลายเดือนก่อน

    GCD (529,123)=1