2-Approximating the Minimum Knapsack Problem
Intro Definition. Given items labeled by , and item has value and cost , we define minimum knapsack problem as following optimization problem - integer programming in fact. where is given desire on value. We can devise a naive LP relaxation for this: $$ \begin{aligned} \text{minimize}\quad& \sum_{i} c_{i}x_{i}\\ \text{s....