diff options
author | Trupti Kini | 2016-09-03 23:30:23 +0600 |
---|---|---|
committer | Trupti Kini | 2016-09-03 23:30:23 +0600 |
commit | 5f15ee61029068ad350502ad04768d7cd84e4736 (patch) | |
tree | b43a8aa92365b74d47758af2ebd4222961586c20 /Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER8.ipynb | |
parent | b417454ff6b5f8c2eb90f054723965a8f52e0268 (diff) | |
download | Python-Textbook-Companions-5f15ee61029068ad350502ad04768d7cd84e4736.tar.gz Python-Textbook-Companions-5f15ee61029068ad350502ad04768d7cd84e4736.tar.bz2 Python-Textbook-Companions-5f15ee61029068ad350502ad04768d7cd84e4736.zip |
Added(A)/Deleted(D) following books
A Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER1.ipynb
A Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER2.ipynb
A Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER3.ipynb
A Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER4.ipynb
A Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER5.ipynb
A Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER6.ipynb
A Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER7.ipynb
A Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER8.ipynb
A Linear_Algebra_And_Its_Applications_by_G._Strang/screenshots/Ch5Eigenmatrix.png
A Linear_Algebra_And_Its_Applications_by_G._Strang/screenshots/Ch5eigenVectors.png
A Linear_Algebra_And_Its_Applications_by_G._Strang/screenshots/ch5eigenvaluematrix.png
Diffstat (limited to 'Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER8.ipynb')
-rw-r--r-- | Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER8.ipynb | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER8.ipynb b/Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER8.ipynb new file mode 100644 index 00000000..ff8dc5c8 --- /dev/null +++ b/Linear_Algebra_And_Its_Applications_by_G._Strang/CHAPTER8.ipynb @@ -0,0 +1,70 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 8 - Linear Programming and Game Theory" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Ex:8.2.2 Pg: 238" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "New corner: [ 0. 0. 0. 0.33333333 3. ]\n", + "Minimum cost: -9.33333333333\n" + ] + } + ], + "source": [ + "from scipy.optimize import linprog\n", + "from numpy import array, transpose\n", + "A=array([[1, 0 ,1 ,6, 2],[0, 1, 1, 0, 3]])\n", + "b=transpose(array([8, 9]))\n", + "c=transpose(array([0, 0, 7 ,-1, -3]))\n", + "lb=transpose(array([0, 0 ,0 ,0 ,0]))\n", + "ub=[]\n", + "ans=linprog(c,A,b)\n", + "x=ans.x\n", + "f=ans.fun\n", + "print 'New corner:',x\n", + "print 'Minimum cost:',f" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.9" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} |