From 622b096561cba164af99974b5c566b940a7d7a7f Mon Sep 17 00:00:00 2001 From: Nicholas Jacob Date: Thu, 7 Sep 2023 14:37:41 -0500 Subject: [PATCH] Really just recycling problems from WW --- LPAssignment.ipynb | 103 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 LPAssignment.ipynb diff --git a/LPAssignment.ipynb b/LPAssignment.ipynb new file mode 100644 index 0000000..eb22a6b --- /dev/null +++ b/LPAssignment.ipynb @@ -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": [ + "\"Open" + ] + }, + { + "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": [] + } + ] +} \ No newline at end of file