|
Profit Maximization
Via Nonlinear Programming
|
Here is a hypothetical example that uses nonlinear programming to maximize the expected overall profit on a
management consulting firm's project portfolio by optimizing the number of consultants assigned to various
projects.
Five management consulting projects have been sold recently:
- A merger
- An acquisition
- A turnaround
- Taking a private company public
- Engineering the buyout and privatization of a public company
A total of 50 consultants are currently available for assignment to the various projects. Each of the
five upcoming projects is assigned a probability of success. But this estimated probability is not
a simple linear function of the number of consultants assigned to the project. Instead, based on the
consulting firm's past experience on similar projects, each type of project is weighted by a constant
parameter: X / (X+c), where X is the number of consultants assigned to the project and c is the value of the
constant assigned to that project. This graph shows the nonlinear curves that result from this weighting
process for the five projects:

Here is the setup of the problem:

The first column shows the five project types. Initially, as shown in the second column (the
model's decision variable), we tentatively assign equal numbers of consultants to each project, with a
limit/constraint of 50 consultants in total across all projects. The third column shows the probability
constants for each project. The fourth column displays the resulting estimated probability of success.
The fifth colum shows the estimated profit for a successful project outcome. We multiply this number by the
expected probability of success to arrive at the expected profit, shown in column six.
When we set up the nonlinear programming model, we will stipulate two constraints:
Also note that based on the starting conditions shown in the table above, the expected total profit
across all projects (the objective function, shown in blue) is estimated to be about $2,234,755 if exactly 10
consultants are assigned to each project.
Here is the nonlinear programming optimization result:

In the table above, column two shows the actual number of consultants assigned to each
project. The optimization of consulting project assignments resulted in approximately $48,201 of additional
estimated profit over the estimated profit resulting from simply assigning exactly 10 consultants to each
project.
Return to Optimization Programming main page
|