Math 5593 Linear Programming Problem Set 3

Size: px
Start display at page:

Download "Math 5593 Linear Programming Problem Set 3"

Transcription

1 Math 5593 Linear Programming Problem Set 3 University of Colorado Denver, Fall 2011 Solutions (October 6, 2011) Solution 3.1 (Production/Transportation Model) [steelp.mod] set ORIG; set DEST; set PROD; # origins (steel mills) # destinations (factories) # products param rate {ORIG,PROD} > 0; param avail {ORIG} >= 0; param demand {DEST,PROD} >= 0; # tons per hour at origins # hours available at origins # tons required at destinations param make_cost {ORIG,PROD} >= 0; param trans_cost {ORIG,DEST,PROD} >= 0; # manufacturing cost/ton # shipping cost/ton var Make {ORIG,PROD} >= 0; # tons produced at origins var Trans {ORIG,DEST,PROD} >= 0; # tons shipped minimize Total_Cost: sum {i in ORIG, p in PROD} make_cost[i,p] * Make[i,p] + sum {i in ORIG, j in DEST, p in PROD} trans_cost[i,j,p] * Trans[i,j,p]; subject to Time {i in ORIG}: sum {p in PROD} (1/rate[i,p]) * Make[i,p] <= avail[i]; subject to Supply {i in ORIG, p in PROD}: sum {j in DEST} Trans[i,j,p] = Make[i,p]; subject to Demand {j in DEST, p in PROD}: sum {i in ORIG} Trans[i,j,p] = demand[j,p]; Data (Production/Transportation Model) [steelp.dat] data; set ORIG := GARY CLEV PITT ; set DEST := FRA DET LAN WIN STL FRE LAF ; set PROD := bands coils plate ; param avail := GARY 20 CLEV 15 PITT 20 ; param demand (tr): FRA DET LAN WIN STL FRE LAF := bands coils plate ; param rate (tr): GARY CLEV PITT := bands

2 Math 5593 Linear Programming Problem Set 3 (with Solutions), UC Denver, Fall coils plate ; param make_cost (tr): GARY CLEV PITT := bands coils plate ; param trans_cost := [*,*,bands]: FRA DET LAN WIN STL FRE LAF := GARY CLEV PITT [*,*,coils]: FRA DET LAN WIN STL FRE LAF := GARY CLEV PITT [*,*,plate]: FRA DET LAN WIN STL FRE LAF := GARY CLEV PITT ; AMPL Output [model steelp.mod; data steelp.dat; solve; display Make, Trans;] Presolve eliminates 1 constraint and 3 variables. Adjusted problem: 69 variables, all linear 32 constraints, all linear; 138 nonzeros 1 linear objective; 69 nonzeros. MINOS 5.5: optimal solution found. 27 iterations, objective Make := CLEV bands 0 CLEV coils 1950 CLEV plate 0 GARY bands 1125 GARY coils 1750 GARY plate 300 PITT bands 775 PITT coils 500 PITT plate 500 ; Trans [CLEV,*,*] : bands coils plate := DET FRA 0 0 0

3 Math 5593 Linear Programming Problem Set 3 (with Solutions), UC Denver, Fall FRE LAF LAN STL WIN [GARY,*,*] : bands coils plate := DET FRA FRE LAF LAN STL WIN [PITT,*,*] : bands coils plate := DET FRA FRE LAF LAN STL WIN ; Solution 3.2 (Solving LPs using the Primal-Dual and the Dual-Primal Two-Phase Simplex Methods) Solution 5.8 (Exercise 2.4): Since this problem has the immediate dual feasible solution (z 1, z 2, z 3 ) = (c 1, c 2, c 3 ) = (1, 3, 1), we can skip a primal phase-i and solve this problem directly using the regular dual simplex method (as special case of the primal-dual simplex method). In particular, after one (uniquely determined) dual pivot between x 2 and x 4, we find optimal primal and dual solutions (x 1, x 2, x 3, x 4, x 5 ) = (0, 1, 0, 0, 5) and (z 1, z 2, z 3, z 4, z 5 ) = (2.2, 0, 1.6, 0.6, 0) with the optimal objective value ζ = 3. x 1 x 2 x 3 1 ζ x x x 1 x 4 x 3 1 ζ x x Solution 5.9 (Exercise 2.6): Since the initial dictionary / tableau to this problem is both primal and dual infeasible, we need to choose one of the two two-phase methods to solve this problem. We note that both the initial primal and dual iterate have two infeasibilities (because the first two primal slacks x 4 = 3 and x 5 = 1 and the dual variables z 1 = 1 and z 2 = 3 are negative), so that it is not clear whether the primal-dual or the dual-primal simplex method would give us an easier game to play. Thus doing both, we start with the primal-dual simplex method and a first (uniquely determined) primal pivot between x 2 and x 5.

4 Math 5593 Linear Programming Problem Set 3 (with Solutions), UC Denver, Fall x 1 x 2 1 ζ x x x x 1 x 5 1 ζ x x x Since the new tableau is dual feasible, we can drop the auxiliary dual objective and continue with the regular dual simplex method. Using Bland s rule, we make a dual pivot between x 1 and x 3 x 1 x 5 1 ζ x x x x 3 x 5 1 ζ x x x resulting in an unbounded dual feasible tableau which shows that the original primal problem must be infeasible. The same conclusion follows (actually a little bit quicker) when using the dual-primal simplex method and Bland s rule that directly forces the pivot between x 1 and x 3 x 1 x 2 1 ζ x x x x 3 x 2 1 ζ x x x Solution 3.3 (Pivoting Challenge) Here are your pivot scores in increasing order for the Dual(-Phase-I)-Primal(-Phase-II) Method, the Primal(-Phase-I)-Dual(-Phase-II) Method, and your combined score fot both pivot challenges (fewer pivots is typically better, although minimum scores may also depend on some lucky choices!). Everybody who submitted scores received full credit! Dual-Primal Method Primal-Dual Method Combined Ranking Rank Score Player Rank Score Player Rank Score Player 1 13 Ganesh 1 15 Ganesh 1 28 Ganesh 2 14 YongLi 15 YongLi 2 29 YongLi 3 15 Anzhelika 3 17 Parvaneh 3 32 Parvaneh 15 Evan 4 18 Cathy 4 34 Anzhelika 15 Parvaneh 5 19 Anzhelika 34 Cathy 6 16 Cathy 19 Kapil 6 35 Evan 16 Jeremy 7 20 Evan 7 36 Kapil 8 17 Kapil 20 Lauren 8 38 Lauren 9 18 Lauren 20 Jenny 38 Jenny 18 Jenny Jeremy 38 Jeremy Solution 3.4 (Dual Formulation and Stories): Note that the given diet problem is formulated as minimization LP that has the exact same form as our regular dual problem. Hence, the associated dual problem looks like an initial primal problem m maximize b i y i subject to i=1 m a ij y i c j i=1 y i 0 j = 1, 2,..., n i = 1, 2,..., m

5 Math 5593 Linear Programming Problem Set 3 (with Solutions), UC Denver, Fall To give a proper interpretation of this problem, let us first clarify the meaning of the new dual variables as shadow prices for the original primal constraints. To do that, we may look at the units [y] = [c]/[a] = ($/unit food)/(nutrient content/unit food) = $/nutrient content which suggests that the y i correspond to the shadow prices for each of the m nutrients i = 1,..., m. In particular, then the objective is still to maximize a dollar rather than a nutrient amount, because [b] [y] = (nutrient amount) ($/nutrient content) = $ Hence, the dual problem tries to price each nutrient (possibly by some food provider) as to maximize overall selling price (profit) while not exceeding current market prices for the food items that include these nutrients. Alternatively, you may remember that the dual variables contain some information on how the objective will change if we change the original constraints right-hand sides (by some sufficiently small amount, otherwise we may have to change the optimal basis): if nutrient requirement b i increases by 1 unit, then our diet cost increases by y i dollars. Hence, as before we would interpret y i as the shadow price for nutrient b i, and the story could continue as before. For your enjoyment and comparison to some other ideas, here are some of your own stories in loosely decreasing order of truthfulness to the actual situation (many are fully correct, so the first are ordered by some sort of creativity ). One point each was deducted if you maximized nutrients or nutritional requirements, or interpreted the constraint as to stay within some budget (note that c is not a budget, but the food prices or costs). Matt wants to set the prices for the nutrients so he can make a profit. The minimum daily requirements for each nutrient is predetermined, presumably by corrupt officials at the USDA who surely receive a kick-backs from Sam and his cohorts in the powerful nutrient lobby. Sam s profit then is directly related to the price that he and his cohorts (ultimately, this is a vast, nearly undetectable price-setting scheme) determines for each nutrient. The constraints proceed from the fact that the price for each of several basic food items is also predetermined (by the equally powerful and corrupt food item lobby). Therefore, the sum of the amount of each nutrient in a specific food item (the conspiracy deepens) times the price for each nutrient cannot exceed the price of that food item. Suppose a company wants to make a super pill, to market to graduate students so that the students don t have to waste time eating they can get all their day s nutrients in one convenient form without having to stop studying. They talk to the student who determined his daily nutrients and food prices, so they have the same data (assuming this student is typical of all graduate students). The company determines what price to sell the pills for by looking at price (to charge) per unit of each required nutrient, which we will call y i. Since the people this pill is marketed for are poor, in addition to busy, they won t pay for pills that satisfy more than the minimum daily requirements under this pricing model. So the company plans to charge m i=1 b iy i for each pill. They then want to maximize this amount, in order to make the most money (assuming that production costs are fairly constant and inexpensive across all nutrients). However, they know that no student is going to pay more for this pill than they would for the frozen dinners and pizza that they already determined they could get for a certain minimal price (the objective function of the primal problem). So, their prices must also satisfy the constraint that m i=1 a ijy i c j, for each food product (j = 1,..., n). And of course, they want to charge a nonnegative amount of money per nutrient, so they need y i 0. Let s imagine that we are planning to open a market near MIT and to price the food so that profit is maximized, in the sense that students prefer the new food items over the current food on the student s list. What we should do is to price each nutrient per unit first and then price a food item based on the unit prices and the units of nutrients that the food item contains.

6 Math 5593 Linear Programming Problem Set 3 (with Solutions), UC Denver, Fall More preciously, the objective is to maximize the profit, which equals the necessary daily requirements that the student needs (the student can get this information from the library) times the unit prices we plan to put on. These prices are under the constraints that the sum of each unit nutrient in corresponding food times the unit prices must be less than to the prices on the student s list, so that these constraints make sure that student prefer the new food because of its cheaper price and the satisfaction of the nutritional requirements. Note that if some constraint j is not satisfied, then the student can buy food item j to some extent instead of entirely buying from us to meet the need of nutrients with less money spent. In other words, we have food item j that is priced higher than in the market, these m constraints are posed to insure that students have no motivation to buy any food instead of just buying our food. This could be what the grocery store will be selling their vitamin/mineral/dietary supplements for. They want to offer these supplements, but they wouldn t sell the supplements for more than what a customer could get by purchasing these nutrients contained in foods, otherwise the foods would be bought rather than the supplements, yet they still want to make as much money as possible on their sales. In the above story, I want to add another person (namely a wholesaler). Suppose that the student went to the wholesaler with his list of different food items and nutritional requirements. When the wholesaler got this list, he decided to provide a diet to the student that meets his minimum daily requirements. On the other hand, the wholesaler wanted to maximize his revenue. The wholesaler thought how could he set the prices y j per unit of nutrient a ij in the food item x j so that the student would buy the food items. The student could buy his food item only if the total cost for food item x j is below c j. This restriction imposes the constraints. His total revenue guaranteed from the nutrients sale forms the objective. His total revenue guaranteed from the nutrients sale can be found by solving the dual problem. There are some producers who produce the n kinds of food which the MIT student needs. The n kinds of food are made from m different nutrients. So there is a wholesaler who supplies the producers with the m nutrients needed to make n kinds of food. The producers who produce the j (j = 1, 2,..., n) informs the supplier (wholesaler) that food j contains i (i = 1, 2,... m) nutrients and he intends to purchase the number of nutrients i in food j (a ij ) to meet the MITs student s minimum nutritional requirements b i. The supplier now has an optimization problem as follows: How can I set the each price of nutrient i (y i ) so that the producer will buy from me, and so that I will maximize my income m i=1 y ib i? The supplier also thinks over that producer j will buy only if the total cost of nutrient i for food j is below the price c j ; otherwise he runs the risk of making a loss if the MIT student opts to buy food j. This restriction imposes the constraint m i=1 a ijy i c j on the prices of the food. A vitamin manufacturer wants to maximize the cost/price b T y of his multi-vitamin. But he wants to guarantee that the cost of his multi-vitamin is competitive with the cost of food that provides the same amount of each nutrient, A T y c. A scenario in which the dual would be a natural problem would be for a person (perhaps an athlete, or someone else on a restricted diet) who wants to maximize their nutrient intake while not going over the cost of what it would have normally been to buy food to attain those nutrient levels. Perhaps they are buying supplements (because they can avoid calories and fats) and want to get nutritional intake but don t want their cost to exceed what would have been the cost had they bought the food instead. Mr. MIT really lived in this fantasy world where he would come into the grocery store and spend a small amount on his necessary groceries. On the other side of things however, Mr. KingSooper Jr. s wife was expecting a baby and they were starting to plan how to best

7 Math 5593 Linear Programming Problem Set 3 (with Solutions), UC Denver, Fall allocate their money. Living on a strict budget was hard but they figured they could raise some of the prices on things sold within the family market. Raising prices too much would of course cause their customers to turn to Mr. Safeway s store, and put Mrs. KingSooper in early labor. Both of these would be incredibly risky, so instead Mr. KingSooper registered for Alex s LP class for next semester so that he could figure out how much was the right amount to charge so that he maximizes the amount he makes all while pleasing hungry Mr. MIT. Like most Whole Food shoppers, Mr. KingSooper Jr. must keep in mind that many of his customers are health conscious out in CO. Another person in the story who would naturally want to solve the dual problem would be the owner of the grocery store from where the student shops for his food. Here y i represents the price for the nutrients. The dual problem ensures the owner the maximum revenue he can earn by selling the food to the student while satisfying the student s minimum dietary requirement and his budget. Let s assume that King Supers also delivers pizza. Then this would be the LP that the manager of King Supers would like to solve in order to maximize profit, subject to the constraints that his costumer still gets his minimum daily nutritional intake on his budgeted small stipend. The dual of the problem can be described as the roommate. His objective is to maximize the amount of nutrients he can receive from his food basket items. However, he is restricted by the price of each food item. He cannot take an amount of nutrients from a food item greater than the amount those nutrients cost compared to one unit of that food item. The dual would be to maximize the minimum daily requirements, subject to the cost of the food being less than or equal to his budget. His mother or doctor would naturally want him to solve the dual. The MIT student was very excited about his diet plan and called his mother to tell her the good news. Unfortunately, his mother was not quite as impressed. While she appreciated the mathematical thinking behind the problem, she did not like that he was focusing on spending the least amount of money while getting the minimum number of nutrients. Being his mother (and a math lover), she suggested he alter his linear problem to focus on maximizing his nutrients while staying within his budget, and then taught him all about the dual format! So, his new problem does just that maximize the number of nutrients he gets while keeping the total cost of all his food within budget. The dual should represent maximized nutrition. If your story is missing, I was probably missing your L A TEX source on Blackboard. Of course, you can still send it to me by and I will add it to this growing collection. Also, if any of the above solutions gives you a new idea, feel free to write it up and I d love to hear about it! Please let me know if you have any questions, comments, corrections, or remarks!

Using AMPL with Gurobi to Apply Optimization Models Efficiently and Reliably

Using AMPL with Gurobi to Apply Optimization Models Efficiently and Reliably Using AMPL with Gurobi to Apply Optimization Models Efficiently and Reliably Robert Fourer AMPL Optimization Industrial Engineering & Management Sciences, Northwestern University www.ampl.com 4er@ampl.com,

More information

Problem Set 4 Duality, Sensitivity, Dual Simplex, Complementary Slackness

Problem Set 4 Duality, Sensitivity, Dual Simplex, Complementary Slackness Problem Set 4 Duality, Sensitivity, Dual Simplex, Complementary Slackness AM121/ES121 Fall 2018 Due 5:00 PM, Tuesday, October 16, 2018 Announcements The assignment is due by 5:00 PM, Tuesday, October 16,

More information

Spending. The Spending Decision Colas and Hot Dogs

Spending. The Spending Decision Colas and Hot Dogs Unit 7 Spending Lesson 7A: The Spending Decision Colas and Hot Dogs Rule 7: Spend wisely. Because income is limited, people must make decisions about which goods and services to buy to maximize the satisfaction

More information

Linda Carrington, Wessex Commercial Solutions

Linda Carrington, Wessex Commercial Solutions Linda Carrington, Wessex Commercial Solutions Linda Carrington has worked with ISO 9001 accredited systems throughout her career, in businesses as diverse as oil and gas, construction, defence and shipping.

More information

If you have never done this before - go to CASA for fingerprint/picture process before your test date.

If you have never done this before - go to CASA for fingerprint/picture process before your test date. MATH 33 Review for Test - When: Where: CASA Testing Center Time: minutes Number of questions: 3 Multiple Choice Questions (total: 84 points) Free Response Questions (total: 6 points) For the free response

More information

Small Hi-Sec Manufacture Guide for Alpha Clone

Small Hi-Sec Manufacture Guide for Alpha Clone Small Hi-Sec Manufacture Guide for Alpha Clone by Sitah Kai EVE Online gives you many opportunities to play and gain ISK. PVP, mission running, ratting, mining, etc I found fun in establishing and running

More information

Eco 401, J. Sandford, fall 2011 September 27, Midterm #1 9/27/11

Eco 401, J. Sandford, fall 2011 September 27, Midterm #1 9/27/11 Midterm #1 9/27/11 Instructions: You have 75 minutes to complete this exam. Part I consists of 9 multiple choice questions, and is worth 27 points, and Part II consists of 3 short-answer questions, and

More information

Reading Essentials and Study Guide

Reading Essentials and Study Guide Lesson 3 Using Economic Models ESSENTIAL QUESTION In what ways do people cope with the problem of scarcity? Reading HELPDESK Academic Vocabulary mechanism process or means by which something can be accomplished

More information

TRANSPORTATION PROBLEM AND VARIANTS

TRANSPORTATION PROBLEM AND VARIANTS TRANSPORTATION PROBLEM AND VARIANTS Introduction to Lecture T: Welcome to the next exercise. I hope you enjoyed the previous exercise. S: Sure I did. It is good to learn new concepts. I am beginning to

More information

Managerial Economics Prof. Trupti Mishra S. J. M School of Management Indian Institute of Technology, Bombay. Lecture - 27 Monopoly

Managerial Economics Prof. Trupti Mishra S. J. M School of Management Indian Institute of Technology, Bombay. Lecture - 27 Monopoly Managerial Economics Prof. Trupti Mishra S. J. M School of Management Indian Institute of Technology, Bombay Lecture - 27 Monopoly So, we will continue our discussion on theory of perfect competition.

More information

Insurance Marketing Benchmarks Report

Insurance Marketing Benchmarks Report Insurance Marketing Benchmarks Report 2017 Introduction How can I attract and maintain policyholders? That s a question successful insurance agents ask themselves on a regular basis. Better coverage, competitive

More information

Anytime Adviser New Car Buying Coach

Anytime Adviser New Car Buying Coach Anytime Adviser New Car Buying Coach Welcome. This interactive guide offers you strategies for getting the best deal on a new car. Let's begin. Interested in a little guidance to negotiate your best deal

More information

Reading Essentials and Study Guide

Reading Essentials and Study Guide Lesson 3 Using Economic Models ESSENTIAL QUESTION In what ways do people cope with the problem of scarcity? Reading HELPDESK Academic Vocabulary mechanism process or means by which something can be accomplished

More information

Let us introduce you to Course Match

Let us introduce you to Course Match 1 Let us introduce you to Course Match 2 In order to understand course match you need to know three terms. Utilities We re using utility here as an economic term. If you aren t already you ll be very familiar

More information

PRODUCT DEVELOPMENT WORKSHEET

PRODUCT DEVELOPMENT WORKSHEET PRODUCT DEVELOPMENT WORKSHEET Presented by Lela Barker at the Global Shea Conference in Abuja, Nigeria WWW.LUCKYBREAKCONSULTING.COM BY LUCKY Lucky Break Consulting LLC BREAK CONSULTING PRODUCT DEVELOPMENT

More information

CIS QA LEVEL 2 WEEK 5 TOPIC: LINEAR PROGRAMMING OBJECTIVE AND SHORT ANSWER QUESTIONS

CIS QA LEVEL 2 WEEK 5 TOPIC: LINEAR PROGRAMMING OBJECTIVE AND SHORT ANSWER QUESTIONS CIS QA LEVEL 2 WEEK 5 TOPIC: LINEAR PROGRAMMING OBJECTIVE AND SHORT ANSWER QUESTIONS 1. In the graphical method of solving a Linear Programming problem, the feasible region is the region containing A.

More information

The Ascending Bid Auction Experiment:

The Ascending Bid Auction Experiment: The Ascending Bid Auction Experiment: This is an experiment in the economics of decision making. The instructions are simple, and if you follow them carefully and make good decisions, you may earn a considerable

More information

Linear Programming Notes I: Introduction and Problem Formulation 1 Introduction to Operations Research Economics 172 is a three quarter sequence in Op

Linear Programming Notes I: Introduction and Problem Formulation 1 Introduction to Operations Research Economics 172 is a three quarter sequence in Op Linear Programming Notes I: Introduction and Problem Formulation 1 Introduction to Operations Research Economics 172 is a three quarter sequence in Operations Research. Management Science majors are required

More information

Script for 408(b)(2) Disclosure Focus Groups

Script for 408(b)(2) Disclosure Focus Groups Script for 408(b)(2) Disclosure Focus Groups Introduction Thank you for coming and agreeing to participate in this discussion. What we are doing here today is called a focus group. My name is [insert moderator

More information

Check HW: WS Calculator Linear Programming

Check HW: WS Calculator Linear Programming Check HW: WS Calculator Linear Programming A calculator company produces a scientific calculator and a graphing calculator. Long-term projections indicate an expected demand of at least 100 scientific

More information

Conducting a Direct Market Survey

Conducting a Direct Market Survey Conducting a Direct Market Survey The following steps detail the things you need to do and the information you need to gather in order to prepare and conduct your Direct Market Survey. You will then include

More information

By: Aderatis Marketing

By: Aderatis Marketing By: Aderatis Marketing 01803 362 026 enquiries@aderatis.com Google AdWords for Small Businesses: Mistakes to Avoid Not getting much luck from your AdWords campaign and ready to admit defeat? Don t feel

More information

Lesson 18: Writing, Evaluating, and Finding Equivalent Expressions with Rational Numbers

Lesson 18: Writing, Evaluating, and Finding Equivalent Expressions with Rational Numbers Lesson 18: Writing, Evaluating, and Finding Equivalent Expressions with Rational Student Outcomes Students create equivalent forms of expressions in order to see structure, reveal characteristics, and

More information

Marginal Costing Q.8

Marginal Costing Q.8 Marginal Costing. 2008 Q.8 Break-Even Point. Before tackling a marginal costing question, it s first of all crucial that you understand what is meant by break-even point. What this means is that a firm

More information

Why RCFA Initiatives Fail?

Why RCFA Initiatives Fail? Module 2c 2c : : Why RCFA Initiatives Fail? Root Cause Analysis View : : RCFA : Hello Mr. Alfred Ludwig, just a few moments of your time to answer a few questions Mr. Ludwig : OK, What can I do for you?

More information

a list of ready, willing, and able buyers that will pay you cash and close as quick as you need them to do so.

a list of ready, willing, and able buyers that will pay you cash and close as quick as you need them to do so. Welcome to day three video three, yesterday we talked about probate misconceptions and your team and today we re gonna talk about Business Models, finding money, and finding probate leads. Let s start

More information

Starting Your Own Business

Starting Your Own Business Grade Five Starting Your Own Business Overview Students listen to several chapters from The Toothpaste Millionaire, by Jean Merrill, to learn about starting a business and earning a profit. They complete

More information

Why and How Should the Government Subsidize Education? February 13, 2008

Why and How Should the Government Subsidize Education? February 13, 2008 Why and How Should the Government Subsidize Education? February 13, 2008 Human Capital Model To keep things simple and flexible, lets use the following version of the human capital model 2 periods everyone

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY

MASSACHUSETTS INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY 15.053 Optimization Methods in Management Science (Spring 2007) Recitation 4, March 1 st and March 2 nd, 2007 Problem 1: More Simplex Tableau Suppose while solving

More information

Exploring Linear Programming

Exploring Linear Programming Warm Up Exploring Linear Programming Graph the following inequalities. Find and label the solution region. What are the vertices of the solution region? Furniture Company Problem Pretend we are a furniture

More information

Theory of Consumer Behavior First, we need to define the agents' goals and limitations (if any) in their ability to achieve those goals.

Theory of Consumer Behavior First, we need to define the agents' goals and limitations (if any) in their ability to achieve those goals. Theory of Consumer Behavior First, we need to define the agents' goals and limitations (if any) in their ability to achieve those goals. We will deal with a particular set of assumptions, but we can modify

More information

Seven Strategies To Win Customers For Life A Mini Course by Shep Hyken, CSP

Seven Strategies To Win Customers For Life A Mini Course by Shep Hyken, CSP Seven Strategies To Win Customers For Life A Mini Course by Shep Hyken, CSP Before you begin Introduction Allow 45 minutes to complete this course! If you don't have time now, you can come back or go to

More information

I Want You To Win This Game!

I Want You To Win This Game! Part 1 I Want You To Win This Game! Today, we are learning a set of thinking tools that will change how we approach the creation of our Digital Product, and our business I believe that most Digital Products

More information

Economics 101 Fall 2013 Homework 5 Due Tuesday, November 21, 2013

Economics 101 Fall 2013 Homework 5 Due Tuesday, November 21, 2013 Economics 101 Fall 2013 Homework 5 Due Tuesday, November 21, 2013 Directions: The homework will be collected in a box before the lecture. Please place your name, TA name and section number on top of the

More information

TABLE OF CONTENTS. Student Handout 1: Career Pre-Assessment Student Handout 2: Volunteering, Internships, and Job Shadowing

TABLE OF CONTENTS. Student Handout 1: Career Pre-Assessment Student Handout 2: Volunteering, Internships, and Job Shadowing TABLE OF CONTENTS Lesson 1: The Path to Success (Career and Job Opportunities)... 3 Student Handout 1: Career Pre-Assessment Student Handout 2: Volunteering, Internships, and Job Shadowing Lesson 2: Bread

More information

ISE 204 OR II. Chapter 8 The Transportation and Assignment Problems. Asst. Prof. Dr. Deniz TÜRSEL ELİİYİ

ISE 204 OR II. Chapter 8 The Transportation and Assignment Problems. Asst. Prof. Dr. Deniz TÜRSEL ELİİYİ ISE 204 OR II Chapter 8 The Transportation and Assignment Problems Asst. Prof. Dr. Deniz TÜRSEL ELİİYİ 1 The Transportation and Assignment Problems Transportation Problems: A special class of Linear Programming

More information

Before getting into the details of our engagement, I d like to ask, what does your company do?

Before getting into the details of our engagement, I d like to ask, what does your company do? Before getting into the details of our engagement, I d like to ask, what does your company do? We re a multilevel marketing company, with sales of around two-hundred million dollars a year. We deal with

More information

UNIVERSITY OF MORATUWA

UNIVERSITY OF MORATUWA UNIVERSITY OF MORATUWA MSC/POSTGRADUATE DIPLOMA IN FINANCIAL MATHEMATICS MA 5101 OPERATIONAL RESEARCH TECHNIQUE I THREE HOURS October 2008 Answer FIVE questions and NO MORE. Question 1 ALI Electronics

More information

Explore Budgeting Teacher s Manual

Explore Budgeting Teacher s Manual Explore Budgeting Teacher s Manual By Judi Kinney Tom Kinney, Editor Jo Reynolds, Graphic Design An Attainment Company Publication 2012 Attainment Company, Inc. All rights reserved. Printed in the United

More information

Richard Piercy. Executive Vice President, Transformation and Digital Supply Chain at EMI Music

Richard Piercy. Executive Vice President, Transformation and Digital Supply Chain at EMI Music Richard Piercy Executive Vice President, Transformation and Digital Supply Chain at EMI Music What is your educational background? How did you decide to work as an IS/IT professional? Well I started my

More information

Consumer Insights into the U.S. Gift Card Market: 2011

Consumer Insights into the U.S. Gift Card Market: 2011 Consumer Insights into the U.S. Gift Card Market: 2011 By First Data and Market Strategies International 2011 First Data Corporation. All trademarks, service marks and trade names referenced in this material

More information

Ten Mistakes to Avoid When Selecting a Marketing Partner. prepared by Primal Digital, LLC

Ten Mistakes to Avoid When Selecting a Marketing Partner. prepared by Primal Digital, LLC Ten Mistakes to Avoid When Selecting a Marketing Partner prepared by 2018 Primal Digital, LLC Are you currently looking for a new marketing partner for your property? Are you planning a periodic partner

More information

CHAPTER 12 LINEAR PROGRAMMING POINTS TO REMEMBER

CHAPTER 12 LINEAR PROGRAMMING POINTS TO REMEMBER For more important questions visit : www.4ono.com CHAPTER 12 LINEAR PROGRAMMING POINTS TO REMEMBER Linear programming is the process used to obtain minimum or maximum value of the linear objective function

More information

Agenda * Move Vocab Slides to you Math Folder * Turn in Checkups * Lesson 7

Agenda * Move Vocab Slides to you Math Folder * Turn in Checkups * Lesson 7 Agenda * Move Vocab Slides to you Math Folder * Turn in Checkups * Lesson 7 Objective: Students understand the terms original price, selling price, markup, markdown, markup rate and markdown rate Lesson

More information

By J. Stephen Pope. How To Make A Fortune Drop Shipping

By J. Stephen Pope. How To Make A Fortune Drop Shipping How To Make A Fortune Drop Shipping By J. Stephen Pope DISCLAIMER AND TERMS OF USE AGREEMENT The author and publisher of this ebook and the accompanying materials have used their best efforts in preparing

More information

Lecture 10 Pay and Productivity

Lecture 10 Pay and Productivity Lecture 10 Pay and Productivity 1 Introduction Ensuring that your employees take actions that are in the best interest of the firm can be a difficult problem One of the more difficult problems is ensuring

More information

Demand- how much of a product consumers are willing and able to buy at a given price during a given period.

Demand- how much of a product consumers are willing and able to buy at a given price during a given period. Ch. 4 Demand Ch. 4.1 The Demand Curve (Learning Objective- explain the Law of Demand) In your world- What are the goods and services that you demand? What happens to your buying when the price goes up

More information

Managerial Economics Prof. Trupti Mishra S. J. M. School of Management Indian Institute of Technology, Bombay

Managerial Economics Prof. Trupti Mishra S. J. M. School of Management Indian Institute of Technology, Bombay Managerial Economics Prof. Trupti Mishra S. J. M. School of Management Indian Institute of Technology, Bombay Lecture - 2 Introduction to Managerial Economics (Contd ) So, welcome to the second session

More information

5 Ways to Grow Your Practice

5 Ways to Grow Your Practice 5 Ways to Grow Your Practice Is your software an expense or an investment? by Reuven Lirov, M.A. What s Your ROI? ROI? Carmen repeated. ROI is simple. How much are you investing, and what kind of return

More information

Communicate business value to your stakeholders

Communicate business value to your stakeholders Communicate business value to your stakeholders Jenni Jepsen, Communications Strategist, goagile Denmark First published in InfoQ, March 2012 I ll let you in on a secret: I don t care what letter you put

More information

Module 4. Math 7 & Pre-Algebra

Module 4. Math 7 & Pre-Algebra Module 4 Math 7 & Pre-Algebra Topic A Lesson 1: Percent Today we will look at different ways to write a number. We can write numbers as fractions, decimals and percents. Percent means per hundred. You

More information

Operation and supply chain management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology Madras

Operation and supply chain management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology Madras Operation and supply chain management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology Madras Lecture - 37 Transportation and Distribution Models In this lecture, we

More information

Emissions trading/tradable pollution permits

Emissions trading/tradable pollution permits Emissions trading/tradable pollution permits The objective is to get students to understand why an trading scheme can be an effective way of, superior in some ways to carbon taxes or quotas. It is important

More information

By J. Stephen Pope. How To Make A Fortune Drop Shipping

By J. Stephen Pope. How To Make A Fortune Drop Shipping How To Make A Fortune Drop Shipping By J. Stephen Pope DISCLAIMER AND TERMS OF USE AGREEMENT The author and publisher of this ebook and the accompanying materials have used their best efforts in preparing

More information

The Efficient Allocation of Individuals to Positions

The Efficient Allocation of Individuals to Positions The Efficient Allocation of Individuals to Positions by Aanund Hylland and Richard Zeckhauser Presented by Debreu Team: Justina Adamanti, Liz Malm, Yuqing Hu, Krish Ray Hylland and Zeckhauser consider

More information

ProMax Marketing Solutions

ProMax Marketing Solutions ProMax Marketing Solutions ProMax Marketing offers an array of services to help dealerships increase leads, strengthen processes, and be more efficient. We realize every dealer is different from the next

More information

Online Marketing. 7 Mistakes. Windows and Doors Manufacturers make in Marketing. 7 Mistakes

Online Marketing. 7 Mistakes. Windows and Doors Manufacturers make in Marketing. 7 Mistakes Online Marketing 7 Mistakes Windows and Doors Manufacturers make in Marketing 7 Mistakes Introduction At Jumptoweb, we spend the necessary time telling our clients that marketing isn t really that complicated.

More information

ISyE 3133B Sample Final Tests

ISyE 3133B Sample Final Tests ISyE 3133B Sample Final Tests Time: 160 minutes, 100 Points Set A Problem 1 (20 pts). Head & Boulders (H&B) produces two different types of shampoos A and B by mixing 3 raw materials (R1, R2, and R3).

More information

Headline. Body. Traffic Leaf Your Institute Old Marketing 2 Behind The 6 Automotive Marketing Tactics You Need To Quit Cold Turkey

Headline. Body. Traffic Leaf Your Institute Old Marketing 2 Behind The 6 Automotive Marketing Tactics You Need To Quit Cold Turkey Headline Body Traffic Leaf Your Institute Old Marketing 2 Behind The 6 Automotive Marketing Tactics You Need To Quit Cold Turkey TABLE OF CONTENTS Introduction... 04 Fall Off The Price Bandwagon... 05

More information

Distinguish between different groups and their motives in a market economy. Distinguish between a shortage of goods and a surplus of goods in a

Distinguish between different groups and their motives in a market economy. Distinguish between a shortage of goods and a surplus of goods in a Distinguish between different groups and their motives in a market economy. Distinguish between a shortage of goods and a surplus of goods in a market economy. Determine what creates a shortage of goods

More information

Mind Your Own Business

Mind Your Own Business Mind Your Own Business You may be asking by now, what is the point of all this financial analysis that has been presented in the previous seven articles? It isn t to make work for your accountant although

More information

19.3 Group Problem Solving L E A R N I N G O B JE C T I V E

19.3 Group Problem Solving L E A R N I N G O B JE C T I V E 19.3 Group Problem Solving L E A R N I N G O B JE C T I V E 1. Identify and describe how to implement seven steps for group problem solving. No matter who you are or where you live, problems are an inevitable

More information

The Key Principles of Economics

The Key Principles of Economics Chapter Summary 2 The Key Principles of Economics This chapter covers five key principles of economics, the simple, self-evident truths that most people readily accept. If you understand these principles,

More information

Chapter 10 Consumer Choice and Behavioral Economics

Chapter 10 Consumer Choice and Behavioral Economics Microeconomics Modified by: Yun Wang Florida International University Spring 2018 1 Chapter 10 Consumer Choice and Behavioral Economics Chapter Outline 10.1 Utility and Consumer Decision Making 10.2 Where

More information

30 Course Bundle: Year 1. Vado Course Bundle. Year 1

30 Course Bundle: Year 1. Vado Course Bundle. Year 1 30 : Year 1 Vado s 30 Year 1 Vado 1. Employee Career Aspirations Coaching Career Development 2. Communicate Clear and Concise Messages Communication Skills for Managers 3. Conflict Management Expectations

More information

ECONOMICS U$A PROGRAM #2 THE FIRM: HOW CAN IT KEEP COSTS DOWN?

ECONOMICS U$A PROGRAM #2 THE FIRM: HOW CAN IT KEEP COSTS DOWN? ECONOMICS U$A PROGRAM #2 THE FIRM: HOW CAN IT KEEP COSTS DOWN? AUDIO PROGRAM TRANSCRIPT ECONOMICS U$A PROGRAM #2 THE FIRM (MUSIC PLAYS) Announcer: Funding for this program was provided by Annenberg Learner.

More information

The Challenger TM Customer: THE NEW REALITY OF SALES

The Challenger TM Customer: THE NEW REALITY OF SALES The Challenger TM Customer: THE NEW REALITY OF SALES FOREWORD Imagine your ideal customer: friendly, eager to meet, ready to buy and become an advocate of your products and services. It turns out that

More information

Econ 302: Microeconomics II - Strategic Behavior. Problem Set # 3 May 31

Econ 302: Microeconomics II - Strategic Behavior. Problem Set # 3 May 31 Econ 30: Microeconomics II - Strategic Behavior Problem Set # 3 May 31 1. Identify the type of price discrimination (direct, indirect) if any. Explain your answer. a) Ladies night at nightclubs. Direct

More information

4/29/2014. OPERATIONALIZING ETHICS IN BUSINESS SETTINGS Case Example: Less Sugar Marketing

4/29/2014. OPERATIONALIZING ETHICS IN BUSINESS SETTINGS Case Example: Less Sugar Marketing Case Example: Less Sugar Marketing 2012 J. Brooke Hamilton III, Ph.D. ITP504 Purwiyatno Hariyadi Departemen Ilmu dan Teknologi Pangan Fakultas Teknologi Pertanian, IPB 2013 phariyadi@ipb.ac.id http://phariyadi.staff.ipb.ac.id

More information

Do You Really Need It?

Do You Really Need It? Grade Four Do You Really Need It? Overview Students share several chapters of the book The Boxcar Children, by Gertrude Chandler Warner, to learn about needs and wants and earning money. Students complete

More information

Consumer Mathematics. Robert Taggart

Consumer Mathematics. Robert Taggart Consumer Mathematics Robert Taggart Table of Contents To the Student................................................. v Unit 1: Dollars and Sense Lesson 1: Coins.............................................

More information

PRODUCT IDEATION SAAS ACADEMY

PRODUCT IDEATION SAAS ACADEMY PRODUCT IDEATION SAAS ACADEMY PRODUCT IDEATION Perhaps you re a development agency or a design agency, and you ve been doing work for other people for awhile now. In the process you ve probably found opportunities

More information

How Can Entrepreneurs Control Costs? Council for Economic Education, New York, NY Entrepreneurship in the U.S. Economy, Lesson 20

How Can Entrepreneurs Control Costs? Council for Economic Education, New York, NY Entrepreneurship in the U.S. Economy, Lesson 20 How Can Entrepreneurs Control Costs? Council for Economic Education, New York, NY Entrepreneurship in the U.S. Economy, Lesson 20 Lesson Description DESCRIPTION In this lesson students will learn that

More information

Study Guide, Let th Quarter Quiz, 16-17

Study Guide, Let th Quarter Quiz, 16-17 Study Guide, Let 2-3 4 th Quarter Quiz, 16-17 (U3C10L1:Q1) Study the Double Bubble Thinking Map and select the option (A-D) that best completes it. - X = Best for Challenges; Y = Logical procedure; Z =

More information

Trainers Handbook Business Management

Trainers Handbook Business Management Trainers Handbook Business Management Adapted to TsIGA Project Towards Sustainable Income Generating Activities Table of Contents Table of Contents Introduction 2 3 Module 1 - Business stages & Ideas 4

More information

Market System. and purchase goods & services to satisfy material wants

Market System. and purchase goods & services to satisfy material wants 2 primary decision makers in market system: Market System Households (consumers) economic unit of one or more persons that provide resources and purchase goods & services to satisfy material wants Firms

More information

Developing a successful farm business. Ariana Torres, PhD Assistant professor Marketing Specialist November 14, 2017

Developing a successful farm business. Ariana Torres, PhD Assistant professor Marketing Specialist November 14, 2017 Developing a successful farm business Ariana Torres, PhD Assistant professor Marketing Specialist November 14, 2017 The first steps to take when establishing your farm business are critical. Personal Needs

More information

Business and Personal Finance Unit 1 Chapter Glencoe/McGraw-Hill

Business and Personal Finance Unit 1 Chapter Glencoe/McGraw-Hill 0 Chapter 2 Finances and Career Planning What You ll Learn Section 2.1 Identify the personal issues to consider when choosing and planning your career. Explain how education and training affect career

More information

Personal Finance Unit 1 Chapter Glencoe/McGraw-Hill

Personal Finance Unit 1 Chapter Glencoe/McGraw-Hill 0 Chapter 2 Finances and Career Planning What You ll Learn Section 2.1 Identify the personal issues to consider when choosing and planning your career. Explain how education and training affect career

More information

Be Your Own Hero: Why You Should Offer Value Instead of Selling Products

Be Your Own Hero: Why You Should Offer Value Instead of Selling Products Last Week s Homework: the Ideal Week - It is quite unpredictable, in that there are things that could interfere with the things you have planned, that s why it s called ideal. - It s more a matter of being

More information

Study Notes for DECA Competition

Study Notes for DECA Competition Study Notes for DECA Competition Personal Selling Manufacturer s representative: Salespeople who represent the manufacturer. Prospecting: Process of finding potential customers who could benefit from and

More information

A perfectly competitive industry has identical firms and identical consumers. Each consumer earns $10,000 a year.

A perfectly competitive industry has identical firms and identical consumers. Each consumer earns $10,000 a year. Microeconomics, elasticity, final exam practice problems (The attached PDF file has better formatting.) ** Exercise 4.1: Elasticities A perfectly competitive industry has identical firms and identical

More information

Rick Willson s new book, Parking Management for Smart Growth, is a how-to

Rick Willson s new book, Parking Management for Smart Growth, is a how-to PARKING MANAGEMENT Author, professor, and consultant Rick Willson on his new book and future vision for parking. FOR SMART GROWTH Rick Willson s new book, Parking Management for Smart Growth, is a how-to

More information

5 best (and worst) uses for Net Promoter Score

5 best (and worst) uses for Net Promoter Score 5 best (and worst) uses for Net Promoter Score. Issue: 2016 InsightSofa.com is a member of ROUCEK Group s.r.o.. All rights reserved 2016 Without exaggeration, Net Promoter SCORE is the best tool for measurement

More information

ICSC Case Competition 2015 Ours or Theirs : NetSuite s Internal Struggle to Balance Channel Partners

ICSC Case Competition 2015 Ours or Theirs : NetSuite s Internal Struggle to Balance Channel Partners ICSC Case Competition 2015 Ours or Theirs : NetSuite s Internal Struggle to Balance Channel Partners The weather was just beginning to show signs that another Boston winter was coming soon. One Bostonian,

More information

Amazon Product Positioning Secrets. Discover How To Position Your Products As The Best (And Only) Choice For Shoppers. Publication Details

Amazon Product Positioning Secrets. Discover How To Position Your Products As The Best (And Only) Choice For Shoppers. Publication Details Amazon Product Positioning Secrets Discover How To Position Your Products As The Best (And Only) Choice For Shoppers Publication Details Written by Alex Wong www.alexwongcopywriting.com Version 1.00 Copyright

More information

Out Of The Box: How You Could Cash In With QR Codes. Caleb Spilchen

Out Of The Box: How You Could Cash In With QR Codes. Caleb Spilchen Out Of The Box: How You Could Cash In With QR Codes. Caleb Spilchen Blah. Ok, I m sure you were ready for this, you know the boring info page, where they tell you the usual baloney, that you just skip,

More information

Top Software for Manufacturing Companies to Grow Sales in 2018

Top Software for Manufacturing Companies to Grow Sales in 2018 Top Software for Manufacturing Companies to Grow Sales in 2018 The world of industrial distribution and manufacturing often focuses on the development of new technologies that change how things are made,

More information

The Principles and Practice of Economics

The Principles and Practice of Economics Chapter 1 The Principles and Practice of Economics Questions 1. Why do we have to pay a price for most of the goods we consume? The inputs we use to produce most goods and services (for example, capital

More information

FROM MYTHS TO MONEY YOUR JOURNEY TO REVENUE WITH CONTRACT RECRUITING

FROM MYTHS TO MONEY YOUR JOURNEY TO REVENUE WITH CONTRACT RECRUITING FROM MYTHS TO MONEY YOUR JOURNEY TO REVENUE WITH CONTRACT RECRUITING TABLE OF CONTENTS Your Journey to Revenue with Contract Recruiting TRENDS & IMPACTS OPPORTUNITIES AHEAD 3 6 TOP 10 REASONS TO PLACE

More information

VNA Level III Module 7: Hills Product Profitability

VNA Level III Module 7: Hills Product Profitability VNA Level III Module 7: Hills Product Profitability Learning Objectives Learning Objectives After completing this module, your basic understanding should include: Understanding how to determine the profitability

More information

How to implement a smart glasses program in 7 easy steps.

How to implement a smart glasses program in 7 easy steps. How to implement a smart glasses program in 7 easy steps. By Richard Gerardi April 4, 2017 In 2013, Gartner research predicted that 2017 would be the year the smart glasses could increase field service

More information

1. Fill in the missing blanks ( XXXXXXXXXXX means that there is nothing to fill in this spot):

1. Fill in the missing blanks ( XXXXXXXXXXX means that there is nothing to fill in this spot): 1. Fill in the missing blanks ( XXXXXXXXXXX means that there is nothing to fill in this spot): Quantity Total utility Marginal utility 0 0 XXXXXXXXXXX XXXXXXXXXXX XXXXXXXXXXX 200 0 = 200 1 200 XXXXXXXXXXX

More information

Guest Concepts, Inc. (702)

Guest Concepts, Inc. (702) Guest Concepts, Inc. (702) 998-4800 Welcome to our tutorial on the Lease End Renewal Process The process you will see here is extremely effective and has been used successfully with thousands of renewal

More information

INTRODUCTION TO LINEAR PROGRAMMING ASSIGNMENT #9, 10, AND 11

INTRODUCTION TO LINEAR PROGRAMMING ASSIGNMENT #9, 10, AND 11 INTRODUCTION TO LINEAR PROGRAMMING ASSIGNMENT #9, 10, AND 11 ASSIGNMENT #9 BELLRINGERà Evaluate P = 20x + 30y for the coordinates 3, 5, 4, 7, and (5, 8). Which coordinate yields the greatest value of P?

More information

1 Mechanism Design (incentive-aware algorithms, inverse game theory)

1 Mechanism Design (incentive-aware algorithms, inverse game theory) 15-451/651: Design & Analysis of Algorithms April 10, 2018 Lecture #21 last changed: April 8, 2018 1 Mechanism Design (incentive-aware algorithms, inverse game theory) How to give away a printer The Vickrey

More information

Goals & Decision-Making

Goals & Decision-Making How to Really Become a Millionaire Goals & Decision-Making The choices you make at any point in your life will have major consequences for your future. In order to make decisions you need to distinguish

More information

HOW TO CREATE A FRENZY OF CUSTOMERS IN YOUR STORE

HOW TO CREATE A FRENZY OF CUSTOMERS IN YOUR STORE HOW TO CREATE A FRENZY OF CUSTOMERS IN YOUR STORE Free, Customized Traffic Scale Report will show you, very specifically, the benefits of awakening the Sleeping Buyer in your market. Click here to claim

More information

The Difference Is You

The Difference Is You This workshop is provided free of charge by HRD Press. You can use this workshop without limits in your organization. This workshop cannot be distributed outside your organization or resold. 1 The Difference

More information

Price Reductions: The Bottom Dollar Script Page 1

Price Reductions: The Bottom Dollar Script Page 1 Price Reductions: The Bottom Dollar Script Page 1 Price Reductions: The Bottom Dollar Script Page 2 Price Reductions: The Bottom-Dollar Script for a Guaranteed Sale By Tim & Julie Harris We ve been enjoying

More information