56 Travellig Salesman Problem using Branch & Bound

Поділитися
Вставка
  • Опубліковано 28 жов 2024

КОМЕНТАРІ • 33

  • @kshitizmayank7208
    @kshitizmayank7208 Рік тому +16

    thanks a lot, sir. previously I did this problem using abdul bari Sir's method where he used the adjacency matrix and all. but our college prefers methods used in the book of Levitan. Luckily you picked the exact question and now I'm confident enough to solve it when it comes

  • @pranavmaiya4386
    @pranavmaiya4386 6 місяців тому +8

    to understand why sir made the 2nd assumption of considering b is visited before visiting c , you need to go back to brute force method .
    in brute force we got (n-1)! combinations right , but actually since the graph is undirected , half of the combination are actually reverse of the other half , so in essence , we have only (n-1)!/2 unique combinations . suppose we considered that we have (n-1)! combinations , half of them would have b preceding c , and the other half of them would have b succeeding c in all the possible combinations .
    thats why we make an assumption that b is visited before visiting c , so that the other half becomes redundant , if you still didnt understand go to section 3.4 of anany levitin textbook and read the brute force approach to solving the TSP

  • @roshankumaru8611
    @roshankumaru8611 2 роки тому +14

    Sir I think there should be a correction in 21:38 as edge DE is already considered we are supposed to take DE and EA (3 and 8 respectively) for values of E and not EA and the next least edge (8 and 2 that you have taken).

  • @HarjinderKaur-sl5uu
    @HarjinderKaur-sl5uu Рік тому +2

    Thankyou so much sir i searched a lot and finally got this video😊

  • @sathviksrikanth7362
    @sathviksrikanth7362 Рік тому +1

    Thanks a lot for this entire series sir!

  • @Chidanand21
    @Chidanand21 Рік тому +10

    I am still perplexed as to why b is visited before c?

    • @TOOXGAME
      @TOOXGAME Рік тому +1

      Did you find out why?..

    • @h03j0
      @h03j0 2 місяці тому

      im very early but apparently thats part of the question, its just, there.

  • @supreetchavan23
    @supreetchavan23 2 місяці тому

    thank you sir for these videos

  • @rengarajansrinivasan4356
    @rengarajansrinivasan4356 2 роки тому +4

    Thanks a ton sir!!!!

  • @nikhilvasu478
    @nikhilvasu478 Місяць тому

    Sir, can u explain how u got these bounding functions in the first place?

  • @guruprasadkulkarnibidar
    @guruprasadkulkarnibidar Рік тому +1

    Why second assumption done? Any purpose of it

  • @pawanpt2682
    @pawanpt2682 Рік тому +1

    Thankyou sir

  • @smitha7264
    @smitha7264 Рік тому

    Thank you so much sir.

  • @serene0808
    @serene0808 Рік тому

    Thank you sir ! 🙏

  • @visheshkrishnasa1288
    @visheshkrishnasa1288 2 роки тому

    Sir for a-c the lower bound will also be 14(same as a-b). Then why are we selecting only the path a-b and not a-c(one of the possible outcomes)?

    • @adithyang6672
      @adithyang6672 2 роки тому +2

      because u cant consider both ab and ac at the same time one is going path other is returning path, soo we just assume one u,
      can assume as c also just try and see u will get the same answer

  • @DharshiniR-g6j
    @DharshiniR-g6j 10 місяців тому

    Sir your explanation is nice, but the calculation is difficult to understand, and you not providing the clear picture to understand the concepts in this TSP.

  • @rithviksen5329
    @rithviksen5329 3 роки тому +2

    Sir why are we assuming that we will not visit c from a?

    • @datastructuresalgorithmsby7411
      @datastructuresalgorithmsby7411  3 роки тому

      When are not supposed to assume any such things, only to avoid the calculations we have assumed in this problem

  • @anonymousguy9263
    @anonymousguy9263 2 роки тому +2

    Sır are the lectures for DAA completed??

  • @kumargoudar8463
    @kumargoudar8463 Рік тому +1

    17.49 s=37

  • @sanjeevtyagi8819
    @sanjeevtyagi8819 3 роки тому

    Sir please upload Traveling salesman from dp