Path: blob/main/Lessons/Lesson 09 - Integer Programming/Self_Assess_Solns_09.ipynb
870 views
Kernel: Python 3 (system-wide)
Lesson 09- Self-Assessment Solutions
Self Assessment: Solving the California Manufacturing BIP - Solution
Concrete Formulation
In [3]:
Out[3]:
The total net present value is $14.00 million.
Build factory in LA? Yes
Build factory in SF? Yes
Build warehouse in LA? No
Build warehouse in SF? No
Abstract Formulation
In [4]:
Out[4]:
The total net present value is $14.00 million.
Build factoryLA? Yes
Build factorySF? Yes
Build warehouseLA? No
Build warehouseSF? No
Self-Assessment: Integer Programming - Solution
Answer: True
Self-Assessment: Type of Programming - Solution
Answer: c
Self-Assessment: Rounding Solutions to Integers - Solution
Answer: e (read section 12.5 again if you missed this)
Self-Assessment: Either/Or Constraints - Solution
Answer: False (only one binary variable is needed)
Self-Assessment: Number of Solutions in BIP - Solution
Answer: False (there are solutions, the number of solutions grows exponentially with the number of variables, see 12.5)