Shortest Path Problem: Formulation & Solution Using Solver

Sdílet
Vložit
  • čas přidán 4. 04. 2020

Komentáře • 26

  • @kitirolai
    @kitirolai Před 3 lety +3

    If the path is a double-way, for example, like b can go c and c can go b in the video, what will be the difference in the constraint?

  • @aplepaple9195
    @aplepaple9195 Před rokem +1

    Really neatly explained. Cheers man, I wish my lecturer could do that…

  • @user-dp8gt2vh7k
    @user-dp8gt2vh7k Před 3 lety +2

    Hlello
    What is the name of the program that we program this disktra's and prim 's algorithm on?
    And what is the algorithm for each grant?
    And thank you✨

  • @jafacam
    @jafacam Před rokem

    Hello.
    Thank you for putting up your shortest path solution. I am trying to do something similar-but-more complex, and am having trouble, and I was wondering if you could give me some guidance.
    What I want to in Excel with shortest paths is:
    1) layout a large m-by-n matrix of nodes, with distances in meters between them. I'll use pseudo-chess-board nomenclature with one axis being A-Z and one axis being numbered 1-n (calling nodes "A1", "C3", "F7", etc)
    2) have the ability to request multiple shortest paths from (say) B3->F8, G2->A14, F2->R23, etc
    3) partially congest a route based on previous paths. For example, if a route is found it may be tagged as 25% congested between two nodes. Another route may add to this. Eventually the route would be congested, and an alternative shortest path would have to be found.
    4) ideally I'd like to make it iteratively optimise, but I realise that may be impossible to do in Excel, so the above congestion may have be sequentially built in
    Do you know of any examples where such a thing has been done?
    Thank you in advance,
    Adam

  • @raphaelnunes9419
    @raphaelnunes9419 Před 3 lety +1

    thank you. i used it. have a good day!

  • @dhiazalfanadifah996
    @dhiazalfanadifah996 Před 3 lety +2

    its very useful for me, Thank you so much

  • @eka6176
    @eka6176 Před 4 měsíci

    thank you for tutorial.

  • @hfdez
    @hfdez Před 3 lety +2

    Hello: Thank you, I used a lot.Hossein Fathi

  • @hfdez
    @hfdez Před 3 lety +1

    please continue

  • @jiran1234
    @jiran1234  Před 4 lety

    Please feel free to ask any questions.

  • @yassineakkes6422
    @yassineakkes6422 Před 3 lety +1

    Good work
    Plz Can you give us Excel file ?

  • @magnusiversen3115
    @magnusiversen3115 Před 3 lety +1

    Do you have a method for solving minimum spanning tree in excel?

    • @jiran1234
      @jiran1234  Před 3 lety

      Yes, we can do it using easily downloadable external excel add in

  • @michaellee7046
    @michaellee7046 Před 3 lety +1

    why do we need to add the "large" numbers?

    • @jiran1234
      @jiran1234  Před 3 lety +1

      Where there is no connection between the nodes in the network, you are not allowed to take that route and this can be assured in Excel calculation by putting a very large positive number ( much larger than any number in the distance matrix).

  • @yashvichauhan1198
    @yashvichauhan1198 Před 8 měsíci +1

    Why are we using 100 or large numbers where no distance is given ??

    • @jiran1234
      @jiran1234  Před 8 měsíci

      You can select any large number, but the condition is, it should be larger than any other number in the distance matrix.

  • @mykavillafranca8313
    @mykavillafranca8313 Před rokem

    Hi Sir,
    May I ask if you own the Linear integer programming formulation of a shortest path problem presented in your YT video, so that I may cite you in my research studies? Hoping for a positive response. Thank you.

    • @jiran1234
      @jiran1234  Před rokem

      If you find it useful, you are free to do that. This is a standard formulation, but I have adapted the same for this explanation.

    • @mykavillafranca8313
      @mykavillafranca8313 Před 11 měsíci

      @@jiran1234 Thanks for the response, sir. In connection with that, may I know the reference (author) you cite for your equation? Hoping for a positive response. Thank you so much.

  • @Andybandy
    @Andybandy Před 8 měsíci

    Can you show us in Python? Thanks for the video

    • @jiran1234
      @jiran1234  Před 8 měsíci

      I am sorry, I have not worked using python.