Mathematics Operations research Knapsack problems view content

List of knapsack problems

2014-3-16 10:21| view publisher: amanda| wiki(57883.com) 0 : 0

description: The knapsack problem is one of the most studied problems in combinatorial optimization, with many real-life applications. For this reason, many special cases and generalizations have been examined.Com ...
The knapsack problem is one of the most studied problems in combinatorial optimization, with many real-life applications. For this reason, many special cases and generalizations have been examined.

Common to all versions are a set of n items, with each item 1 \leq j \leq n having an associated profit pj ,weight wj. The binary decision variable xj is used to select the item. The objective is to pick some of the items, with maximal total profit, while obeying that the maximum total weight of the chosen items must not exceed W. Generally, these coefficients are scaled to become integers, and they are almost always assumed to be positive.

The knapsack problem in its most basic form:

maximize \sum_{j=1}^n p_j x_j    
subject to    \sum_{j=1}^n w_j x_j \leq W,    
 x_j \in \{0,1\}    \forall j \in \{1,\ldots, n\}

related categories

About us|Jobs|Help|Disclaimer|Advertising services|Contact us|Sign in|Website map|Search|

GMT+8, 2014-3-16 10:21 , Processed in 0.108098 second(s), 17 queries .

57883.com service for you! X3.1

Back to top