A company that produces two kinds of office tables, T1 and T2. It takes 2 hours to produce the parts of one unit of T1, 1 hour to assemble and 2 hours to polish. It takes 4 hours to produce the parts of one unit of T2, 2.5 hour to assemble and 1.5 hours to polish. Per month, 7000 hours are available for producing the parts, 4000 hours for assembling the parts and 5500 hours for polishing the tables. The profit per unit of T1 is $90 and per unit of T2 is $110. cOMPUTE THE DUAL PRICE.
optimization problem is
primal problem
"maximize \\space 90x+110y\\\\\n\n\nsubject \\ to,\\\\ 2x+4y\\le 7000\\\\ x+2.5y \\le 4000\\\\ 2x+1.5y\\le5500"
convert primal problem to dual problem
"Min \\space Z_d=7000w_1+4000w_2+5500w_3\\\\\nsubject \\space to\\space 2w_1+w_2+2w_3\u226590\\\\\n4w_1+2.5w_2+1.5w_3\u2265110\n\\\\\nand w_1,w_2,w_3\u22650;"
now we solve dual problem with BIG-M method
"Min \\space Z\t=\t\t7000\tw_1\t+\t4000\tw_2\t+\t5500\tw_3\t+\t0\tw_1\t+\t0\tw_2\t+\tMA_1\t+\tM\tA_2\\\\\nsubject \\space to\\\\\n2\tw_1\t+\t\tw_2\t+\t2\tw_3\t-\t\tw_1\t\t\t\t+\t\tA_1\t\t\t\t=\t90\\\\\n4\tw_1\t+\t2.5\tw_2\t+\t1.5\tw_3\t\t\t\t-\t\tw_2\t\t\t\t+\t\tA_2\t=\t110\\\\\nand w_1,w_2,w_3,w_1,w_2,A_1,A_2\u22650"
"Positive\\space max\\space Z_j-C_j\\space is\\space 6M-7000\\space and\\space its\\space column\\space index\\space is\\space 1.\\\\\n\n\\space So,\\space the\\space entering\\space variable\\space is\\space w_1.\\\\\n\nMinimum\\space ratio\\space is\\space 27.5\\space and\\space its\\space row\\space index\\space is\\space 2.\\space \\\\\nSo,\\space the\\space leaving\\space basis\\space variable\\space is\\space A_2.\n\n\\\\\u2234\\space The\\space pivot\\space element\\space is\\space 4.\\\\\n\nEntering\\space =w_1,\\space Departing\\space =A_2,\\space Key\\space Element\\space =4"
"Positive\\space max\\space Z_j-C_j\\space is\\space 1.25M-2875\\space and\\space its\\space column\\space index\\space is\\space 3.\\\\\n\n\\space So,\\space the\\space entering\\space variable\\space is\\space w_3.\\\\\n\nMinimum\\space ratio\\space is\\space 28\\space and\\space its\\space row\\space index\\space is\\space 1.\\space \\\\\nSo,\\space the\\space leaving\\space basis\\space variable\\space is\\space A_1.\n\n\\\\\u2234\\space The\\space pivot\\space element\\space is\\space 1.25.\\\\\n\nEntering\\space =w_3,\\space Departing\\space =A_1,\\space Key\\space Element\\space =1.25"
"Since \\space all\\space Zj-Cj\u22640\\\\\n\nHence, optimal \\space solution \\space is\\space arrived\\space with\\space value\\space of\\space variables\\space as :\\\\\nw_1=17,w_2=0,w_3=28\\\\\n\nMin Z=273000\\\\\n\nwe \\space can\\space write \\space solution \\space for \\space primal \\space problem\\\\"
maximum profit $273000 by making type T1 table 2300 and type T2 table 600
Comments
Leave a comment