PuLP for linear optimization
A farmer faces a diet problem for their cattle. The vet's recommendation is that each animal is fed at least 7 pounds of a mix of corn and soybean with at least 17% protein and 2% fat. Below are the relevant nutritional elements:
Food type | Cost ($/lb) | Protein (%) | Fat (%) |
---|---|---|---|
corn | 0.11 | 10 | 2.5 |
soybean | 0.28 | 40 | 1 |
You will use this information to minimize costs subject to nutritional constraints.
pulp
has been imported for you.
Cet exercice fait partie du cours
Introduction to Optimization in Python
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Define the model
model = ____
C = ____
S = ____