Combinatorial optimization: Knapsack problem 2: Unterschied zwischen den Versionen

Aus Operations-Research-Wiki
Wechseln zu: Navigation, Suche
[unmarkierte Version][unmarkierte Version]
Zeile 27: Zeile 27:
 
'''3. Example'''
 
'''3. Example'''
  
    A woman wants to go on vacation. But now she has to overcome a serious problem, because the airline prescribe  
+
A woman wants to go on vacation. But now she has to overcome a serious problem, because the airline prescribe  
    a maximum weight of 25 kg (b = 25 kg)for her luggage (the worst that can happen to a woman).
+
a maximum weight of 25 kg (b = 25 kg)for her luggage (the worst that can happen to a woman).
    She has the choice between six different items which she can pack.  
+
She has the choice between six different items which she can pack.  
    Each object has a special benefit c_i for the woman and a weight a_i.
+
Each object has a special benefit c_i for the woman and a weight a_i.
 
     What items should be selected by her to have the maximum benefit without exceeding the maximum weight of 25 kg?
 
     What items should be selected by her to have the maximum benefit without exceeding the maximum weight of 25 kg?
  
    [[Datei:Tabelle Wiki.jpg]]
+
[[Datei:Tabelle Wiki.jpg]]
  
 
'''4. Methods: Kolesar, Greenberg and Cascading Tree'''
 
'''4. Methods: Kolesar, Greenberg and Cascading Tree'''
  
    To apply the different methods a ranking must be formed first.  
+
To apply the different methods a ranking must be formed first.  
 
      
 
      
    For this purpose, a quotient is formed from the benefit c_i and the weight a_i.
+
For this purpose, a quotient is formed from the benefit c_i and the weight a_i.
    Afterwards, the values are sorted according to the size.
+
Afterwards, the values are sorted according to the size.
  
    [[Datei:Quotient.jpg]]
+
[[Datei:Quotient.jpg]]
  
    Ordered list:
+
Ordered list:
 
      
 
      
    [[Datei:Liste.jpg]]
+
[[Datei:Liste.jpg]]
  
    This list is the basis for all applicable methods.
+
This list is the basis for all applicable methods.
  
 
----
 
----
  
    a) '''''Kolesar'''''
+
a) '''''Kolesar'''''
  
    The goal is to obtain an integer solution. One begins with the object of rank 1, then rank 2 and so on  
+
The goal is to obtain an integer solution. One begins with the object of rank 1, then rank 2 and so on  
    and sets the variable equal 1 or 0. The items can be taken as long as the maximum weight of 25 kg is reached.
+
and sets the variable equal 1 or 0. The items can be taken as long as the maximum weight of 25 kg is reached.
    This means that the last possible item mostly can't be taken completely.
+
This means that the last possible item mostly can't be taken completely.
    The solution with the higher objective function value is branched. If the objective function value is less  
+
The solution with the higher objective function value is branched. If the objective function value is less  
    than the value that provides the best integer solution, this solution is not branched.
+
than the value that provides the best integer solution, this solution is not branched.
 
      
 
      
    [[Datei:Kolesar.jpg]]     
+
[[Datei:Kolesar.jpg]]     
  
    b) '''''Greenberg & Hegerich'''''
+
b) '''''Greenberg & Hegerich'''''
 
      
 
      
    In this method, one starts with the non-integer variable and set this variable equal 0 and 1 respectively to look
+
In this method, one starts with the non-integer variable and set this variable equal 0 and 1 respectively to look
    for a better solution. This should be continued until an optimal solution is found.  
+
for a better solution. This should be continued until an optimal solution is found.  
    The procedure is identical to the first presented method.
+
The procedure is identical to the first presented method.
  
    [[Datei:Greenberg.jpg]]
+
[[Datei:Greenberg.jpg]]
  
    c) '''''Cascading Tree'''''
+
c) '''''Cascading Tree'''''
  
    [[Datei:Cascading Tree.jpg]]
+
[[Datei:Cascading Tree.jpg]]
  
 
'''5. Method 4'''
 
'''5. Method 4'''
  
 
'''6. complexity problem'''
 
'''6. complexity problem'''

Version vom 27. Juni 2013, 15:05 Uhr

Knappsack-Problem

Inhaltsverzeichnis ------->Hier könnte man noch das Inhaltsverzeichnis verlinken,

                                        sodass man zu dem Thema springen kann. Hab aber keine Ahnung wie man das einstellt:)

1. Introduction

2. Application and Definition

3. Example

4. Methods: Kolesar, Greenberg and Cascading Tree

5. Method 4

6. complexity problem


1. Introduction

The Knapsack-problem is a optimizing problem. There is a quantity of objects and every object has weight and a benefit. Then you choose a subset of these objects. This subset shouldn't pass a maximum level of weight. Under these condition you chose the subset which has the best benefit. This Problem is also called "backpack-problem" becaus it results from an example in which a hiker has to pack his backpack. He has to answer the question :how can I fill the 50 liter space of the backpack to get an optimal benefit.

2. Application and Definition

3. Example

A woman wants to go on vacation. But now she has to overcome a serious problem, because the airline prescribe a maximum weight of 25 kg (b = 25 kg)for her luggage (the worst that can happen to a woman). She has the choice between six different items which she can pack. Each object has a special benefit c_i for the woman and a weight a_i.

   What items should be selected by her to have the maximum benefit without exceeding the maximum weight of 25 kg?
Fehler beim Erstellen des Vorschaubildes: Die Miniaturansicht konnte nicht am vorgesehenen Ort gespeichert werden

4. Methods: Kolesar, Greenberg and Cascading Tree

To apply the different methods a ranking must be formed first.

For this purpose, a quotient is formed from the benefit c_i and the weight a_i. Afterwards, the values are sorted according to the size.

Fehler beim Erstellen des Vorschaubildes: Die Miniaturansicht konnte nicht am vorgesehenen Ort gespeichert werden

Ordered list:

Fehler beim Erstellen des Vorschaubildes: Die Miniaturansicht konnte nicht am vorgesehenen Ort gespeichert werden

This list is the basis for all applicable methods.


a) Kolesar

The goal is to obtain an integer solution. One begins with the object of rank 1, then rank 2 and so on and sets the variable equal 1 or 0. The items can be taken as long as the maximum weight of 25 kg is reached. This means that the last possible item mostly can't be taken completely. The solution with the higher objective function value is branched. If the objective function value is less than the value that provides the best integer solution, this solution is not branched.

Fehler beim Erstellen des Vorschaubildes: Die Miniaturansicht konnte nicht am vorgesehenen Ort gespeichert werden

b) Greenberg & Hegerich

In this method, one starts with the non-integer variable and set this variable equal 0 and 1 respectively to look for a better solution. This should be continued until an optimal solution is found. The procedure is identical to the first presented method.

Fehler beim Erstellen des Vorschaubildes: Die Miniaturansicht konnte nicht am vorgesehenen Ort gespeichert werden

c) Cascading Tree

Fehler beim Erstellen des Vorschaubildes: Die Miniaturansicht konnte nicht am vorgesehenen Ort gespeichert werden

5. Method 4

6. complexity problem