Anna Nicanorova: Optimizing Life Everyday Problems Solved with Linear Programing in Python

Поділитися
Вставка
  • Опубліковано 25 січ 2025

КОМЕНТАРІ •

  • @marwinsolomon9511
    @marwinsolomon9511 3 роки тому +3

    Great video with excellent explanation and implementation of python for solving real-world problems which can be modelled linearly👍👏

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

    Great Video, taught me how to allocate quantities for a retail store, given quantities in the warehouse and with constraints

  • @JohnForbes
    @JohnForbes 8 років тому

    Wouldn't a more constrained problem be computed faster as there would be less possibilities that need to be considered? @13:15

    • @gregoryfenn1462
      @gregoryfenn1462 8 років тому +5

      +John Forbes Not usually. The program doesn't literally go through each possibility to identify the best: it looks at all the extreme vertices of the space defined by the constraints. As such, the more constraints there are, the more vertices need to be checked.
      E.g. when we have 2 decision variables. x and y, consider these three constraints
      - 2x + y >= 1
      - x >= 0
      - y >= 0
      and we want to minimise f(x, y) = 3x + y^2
      then we imagine the 3D-Space with the curved surface "z = 3x + y^2" drawn, and the three flat planes "2x + y = 1", "x >= 0", "y >= 0" drawn too. Then there is a space where the z-curve exists within the three constraints. Looking at the extremums of it (min, max, x infinity, y infinity) let's us find the solution quickly.

    • @JohnForbes
      @JohnForbes 8 років тому +1

      Thanks for the explanation.

    • @LuisFernandoValenzuela
      @LuisFernandoValenzuela 8 років тому +2

      it depends more on the topology of the feasible set (and the complexity of the constrains)

  • @amirsadrpour3456
    @amirsadrpour3456 8 років тому

    great video, she mentioned solving large scale linear programming problems in her company, do you use PULP ? does it scale well with size of the data ?

  • @sunnylee6238
    @sunnylee6238 9 років тому

    Thanks! This is what I'm looking for.

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

    Excellent

  • @g173df
    @g173df 9 років тому

    I wish I had this alg. pgm to tell me to get my GED instead of hs diploma so I could've gotten my BS earlier.