Are you looking to learn the basics of mathematical optimization modeling? If so, then this is a great place to start. In this tutorial, we’ll walk you through the process of building a mathematical optimization model and solving a mathematical optimization problem. We’ll begin by giving you an overview of the key components of a simple mathematical optimization problem, then show you how to create a mathematical optimization model (or, to be more precise, a mixed-integer programming or MIP model) of the problem using the Gurobi Python API, and then demonstrate how you can automatically generate an optimal solution using the Gurobi Optimizer. In this notebook, you’ll learn the basics of mathematical optimization modeling using Python and Gurobi. We’ll show you how to formulate models and use Gurobi’s powerful optimization solver to find the best solutions to real-world decision problems. You may find it helpful to refer to the documentation of the Gurobi Python API. This notebook is explained in detail in our series of tutorial videos on mixed-integer linear programming. You can watch these videos by clicking here. What Is Optimization Modeling? Optimization modeling is the process of translating complex decision problems into mathematical models that can be solved with an optimization solver, like Gurobi. An optimization model consists of an objective function (the thing you want to maximize or minimize, like profits or costs), decision variables (factors you can adjust to influence the outcome of the objective function), and a set of constraints (the rules your solution must satisfy, like staying within your limited number of available resources). Why Learn Optimization Modeling? The demand for optimization skills is on the rise. In fact, according to the Bureau of Labor Statistics, an estimated 28,300 new operations research jobs will be created by 2033. By learning optimization modeling, you can invest in your career while helping to solve some of the world’s most complex challenges.
Access the Jupyter Notebook Modeling Example
Click on the button below to access the example in Google Colab, which is a free, online Jupyter Notebook environment that allows you to write and execute Python code through your browser.
How to Run the Example
To run the example the first time, choose “Runtime” and then click “Run all”.
All the cells in the Jupyter Notebook will be executed.
The example will install the gurobipy package, which includes a limited Gurobi license that allows you to solve small models.
You can also modify and re-run individual cells.
For subsequent runs, choose “Runtime” and click “on “Restart and run all”.
The Gurobi Optimizer will find the optimal solution of the modeling example.
Check out the Colab Getting Started Guide for full details on how to use Colab Notebooks as well as create your own.
