-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Really just recycling problems from WW
- Loading branch information
Showing
1 changed file
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
{ | ||
"nbformat": 4, | ||
"nbformat_minor": 0, | ||
"metadata": { | ||
"colab": { | ||
"provenance": [], | ||
"authorship_tag": "ABX9TyN5OKGkCJfvG1OH05tuxkuQ", | ||
"include_colab_link": true | ||
}, | ||
"kernelspec": { | ||
"name": "python3", | ||
"display_name": "Python 3" | ||
}, | ||
"language_info": { | ||
"name": "python" | ||
} | ||
}, | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": { | ||
"id": "view-in-github", | ||
"colab_type": "text" | ||
}, | ||
"source": [ | ||
"<a href=\"https://colab.research.google.com/github/nurfnick/Operations_Research/blob/main/LPAssignment.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"source": [ | ||
"# Linear Programming Assignment" | ||
], | ||
"metadata": { | ||
"id": "31GxmqsFEuzW" | ||
} | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"source": [ | ||
"## Redo a WeBWorK Question Using Python" | ||
], | ||
"metadata": { | ||
"id": "xWsxg3k-EzBs" | ||
} | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"source": [ | ||
"Consider WW Set 03 Problem 3. Using python, do the following:\n", | ||
"1. Copy your problem here.\n", | ||
"1. Find corner points. \n", | ||
"2. Graph feasible set.\n", | ||
"3. Find the corner that maximizes the objective function $P = 3x+2y$.\n", | ||
"4. Introduce slack variables, find the corner points again." | ||
], | ||
"metadata": { | ||
"id": "eLQofNfAGgoS" | ||
} | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"source": [ | ||
"## Redo a WeBWorK Question Using Python" | ||
], | ||
"metadata": { | ||
"id": "OwGWpGToIx-L" | ||
} | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"source": [ | ||
"Consider WW Set 04 Problem 6. Using python, do the following:\n", | ||
"1. Write the equations that describe the problem completely using $\\LaTeX$ encoding. \n", | ||
"1. Find corner points. \n", | ||
"2. Graph feasible set.\n", | ||
"3. Find the corner that maximizes the objective function.\n", | ||
"4. Introduce slack variables, find the corner points again." | ||
], | ||
"metadata": { | ||
"id": "H7uUoaW6Ix-O" | ||
} | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"source": [], | ||
"metadata": { | ||
"id": "mKfm4CHVIx-Q" | ||
}, | ||
"execution_count": null, | ||
"outputs": [] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"id": "w8ip_AnaIx-R" | ||
}, | ||
"outputs": [], | ||
"source": [] | ||
} | ||
] | ||
} |