AM 121: Intro to Optimization Models and Methods

Size: px
Start display at page:

Download "AM 121: Intro to Optimization Models and Methods"

Transcription

1 AM 121: Intro to Optimization Models and Methods Lecture 3: Applications, Examples, Exercises. Yiling Chen SEAS Lecture 3: Lesson plan The Post Office Problem The SailCo Problem The SAVE-IT Company A Simple AMPL Example (AMPL: A Modeling Language for Mathematical Programming) From problem to LP + a little AMPL

2 Post Office Problem Union rules state that each full-time employee must work 5 consecutive days and then receive 2 days off. Formulate an LP to minimize the number of fulltime employees who must be hired. Day Number of full-time employees required 1=Monday 17 2=Tuesday 13 3=Wednesday 15 4=Thursday 19 5=Friday 14 6=Saturday 16 7=Sunday 11 Note: will need solution to be integral!

3 Variation 1: Forced overtime Post office can force employees to work a 6 th day each week Pay $100/day, $130 for the overtime day. Formulate an LP to minimize cost of meeting weekly labor requirements Day Number of full-time employees required 1=Monday 17 2=Tuesday 13 3=Wednesday 15 4=Thursday 19 5=Friday 14 6=Saturday 16 7=Sunday 11 Note: will need solution to be integral!

4 Variation 2: Maximizing Weekends! Post office has 25 fulltime employees. Cannot hire or fire. Day Number of full-time employees required 1=Monday 17 2=Tuesday 13 Formulate an LP to schedule employees in order to maximize the number of weekend days off received by the employees 3=Wednesday 15 4=Thursday 19 5=Friday 14 6=Saturday 16 7=Sunday 11 Note: will need solution to be integral!

5 Variation 3:Part-time employees Now allowed to hire parttime employees Full-time: 8 hours a day, 5 consecutive days (2 days off). Cost $15/hour. Part-time: 4 hours a day, 5 consecutive days (2 days off). Cost $10/hour. Part-time limited by union to 25% of weekly labor (in terms of working hours). Formulate an LP to minimize the post office s weekly labor costs. Day 1=Monday 2=Tuesday 3=Wednesday 4=Thursday 5=Friday 6=Saturday 7=Sunday Number of full-time employees required 8*17=136 hrs 8*13=104 hrs 8*15=120 hrs 8*19=152 hrs 8*14=112 hrs 8*16=128 hrs 8*11=88 hrs Note: will need solution to be integral!

6 The SailCo Problem SailCo must determine how many sailboats to produce in each of next quarters. Must meet demand in each Q. Boats made in a Q can be used to meet demand in same Q. Formulate an LP to determine a production schedule to minimize the sum of the production and inventory costs. Q1 Q2 Q3 Q4 demand production cost $400/boat, first 40 boats in a quarter $450/boat for additional boats inventory cost $20/boat/quarter for boats on hand at end of a quarter (after production has occurred and demand satisfied) initial inventory: 10 sailboats at start of Q1 h t : represents # boats on hand at end of quarter x t : number of boats made less than 40 y 4 : number of boats made above 40

7 Variation 1: Better handling of the Rolling Horizon Notice that the plan leaves you with zero boats on hand at the end of Q4. Modify the LP to ensure that will end planning horizon with 10 boats in inventory. In practice, because this is a rolling horizon problem we would only implement for Q1 (produce 40 boats). Now observe demand. Suppose d 1 =35. Then Q2 begins with inventory of =15 Now solve LP for Q2 Q5 and starting with 15 boats. Suppose projected demand for Q5 is 36 Q1 Q2 Q3 Q4 Q5 forecast demand actual demand 35 keep inventory of 10 at end of planning horizon. Formulation for start of Q2:

8 Variation 2: Production-smoothing costs [Require at least 10 boats on hand at the end] Suppose that there is a concern about making production smooth across periods. Increase in production: $400/boat (training) Decrease in production: $500/boat (severance pay, decreasing morale, etc.) Assume 50 boats made during the Q preceding Q 1 New constraints: x 2 + y 2 (x 1 + y 1 )=c 2 = c + 2 c 2 to capture change in production from period to period

9 Solution: (40,40,40,40) + (15,15,15,15) Why will the optimal solution not have both c + t > 0 and c t > 0? E.g., suppose production 70 in period 2 and 60 in period 1. What assignments to c + t and are feasible? c t Variation 3: Allowing demands to be backlogged Suppose now that demands can be backlogged and met in future periods Penalty of $100/boat for each quarter that demand is unmet. Must meet all demand by end of Q4. Idea: modify the formulation so that h + 2 h 2 = h+ 1 h 1 + x 1 = y 1 d 1 represents the potential backlog (at end of period) through h 2. Drop requirement that inventory be non-negative (except for final period) Include penalty in objective, e.g. add term +100h 2

10 The SAVE-IT Company Operates a reclamation center. Collects 4 types solid materials and treats so they can be amalgamated into a saleable product of 3 different grades. Formulate an LP to determine amount of each grade and mix of materials for each grade, maximizing profit (sales amalg. cost) Have grants of $30,000 for complete treatment cost (can t treat more than this) and at least half of each material must be collected and treated. Material Availability (lbs per week) Treatment cost $/lb $/lb $/lb $/lb Grade Spec A 1 <= 30% 2 >= 40 % 3 <= 50% 4 =20% B 1 <= 50% 2 >= 10% 4 = 10% Amalg. cost Sales price 3 $/lb 8.5 $/ lb 2.5 $/lb 7 $/lb C 1 <= 70% 2 $/lb 5.5 $/ lb

11 Variation 1: Pay for treatment SAVE-IT recognizes that it might be able to to make more profits and improve environment. Negotiates matching funds that will provide a 80% rebate on treatment cost above 30,000 per week. Formulate an LP that (a) uses all of 30,000, (b) treats at least half of every material, (c) may in addition treat more if this is profitable.

12 introduce y = 3(X A1 + x B1 + x C1 ) + 6(x A2 + x B2 + x C2 )+ 4(X A3 + x B3 + x C3 ) + 5(x A4 + x B4 + x C4 ) y 0 Add ( 0.8y) to the objective

13 An AMPL Example Product A Product B Profit Per Unit 5 8 Machine time 1 1 Storage Space 5 9 max 5x 1 + 8x 2 s.t. x 1 + x 2! 6 5x 1 + 9x 2! 45 x 1, x 2 " 0 Total machine time = 6; Total storage space = 45; example.mod set PRODUCT; set RESOURCE; param usage {i in RESOURCE, j in PRODUCT}; param profit {j in PRODUCT}; param avail {i in RESOURCE}; var X {j in PRODUCT}>=0; maximize Total_Profit: sum {j in PRODUCT} profit[j]*x[j]; subject to Resource_Constraints {i in RESOURCE}: sum{j in PRODUCT} usage[i, j]*x[j]<=avail[i]; example.dat set PRODUCT := A B; set RESOURCE := machine space; param usage: A B:= machine 1 1 space 5 9; param profit:= A 5 B 8; param: avail:= machine 6 space 45; Solve by AMPL Install AMPL according to instructions Start AMPL at command line ampl: model example.mod; ampl: data example.dat; ampl: option solver cplexamp; ampl: solve; IBM ILOG License Manager: "IBM ILOG Optimization Suite for Academic Initiative" is accessing CPLEX 12 with option(s): "e m b q ". CPLEX : No LP presolve or aggregator reductions. optimal solution; objective dual simplex iterations (1 in phase I) ampl: display X; X [*] := A 2.25 B 3.75 ;

Basic Components of an LP:

Basic Components of an LP: 1 Linear Programming Optimization is an important and fascinating area of management science and operations research. It helps to do less work, but gain more. Linear programming (LP) is a central topic

More information

Fixture List 2018 FIFA World Cup Preliminary Competition

Fixture List 2018 FIFA World Cup Preliminary Competition Fixture List 2018 FIFA World Cup Preliminary Competition MATCHDAY 1 4-6 September 2016 4 September Sunday 18:00 Group C 4 September Sunday 20:45 Group C 4 September Sunday 20:45 Group C 4 September Sunday

More information

Cruise Line Agencies of Alaska. Cruise Ship Calendar for 2016 FOR PORT(S) = KTN AND SHIP(S) = ALL AND VOYAGES = ALL

Cruise Line Agencies of Alaska. Cruise Ship Calendar for 2016 FOR PORT(S) = KTN AND SHIP(S) = ALL AND VOYAGES = ALL Cruise Line Agencies of Alaska Cruise Ship Calendar for 2016 FOR PORT(S) = KTN AND SHIP(S) = ALL AND VOYAGES = ALL Page 1 of 5 Sunday, May 1 07:0-18:0 Monday, May 2 Tuesday, May 3 Wednesday, May 4 Thursday,

More information

Cruise Line Agencies of Alaska. Cruise Ship Calendar for 2016 FOR PORT(S) = KTN AND SHIP(S) = ALL AND VOYAGES = ALL

Cruise Line Agencies of Alaska. Cruise Ship Calendar for 2016 FOR PORT(S) = KTN AND SHIP(S) = ALL AND VOYAGES = ALL Cruise Line Agencies of Alaska Cruise Ship Calendar for 06 FOR PORT(S) = KTN AND SHIP(S) = ALL AND VOYAGES = ALL 6: Friday, April 5, 06 Cruise Line Agencies of Alaska, Cruise Ship Calendar for 06 Page

More information

Cruise Line Agencies of Alaska. Cruise Ship Calendar for 2012 FOR PORT(S) = KTN AND SHIP(S) = ALL AND VOYAGES = ALL

Cruise Line Agencies of Alaska. Cruise Ship Calendar for 2012 FOR PORT(S) = KTN AND SHIP(S) = ALL AND VOYAGES = ALL Cruise Line Agencies of Alaska Cruise Ship Calendar for 0 FOR PORT(S) = KTN AND SHIP(S) = ALL AND VOYAGES = ALL :8 Tuesday, January 0, 0 Cruise Line Agencies of Alaska, Cruise Ship Calendar for 0 Page

More information

Cruise Line Agencies of Alaska. Cruise Ship Calendar for 2013 FOR PORT(S) = KTN AND SHIP(S) = ALL AND VOYAGES = ALL

Cruise Line Agencies of Alaska. Cruise Ship Calendar for 2013 FOR PORT(S) = KTN AND SHIP(S) = ALL AND VOYAGES = ALL Cruise Line Agencies of Alaska Cruise Ship Calendar for 0 FOR PORT(S) = KTN AND SHIP(S) = ALL AND VOYAGES = ALL 9:5 Friday, January 0, 0 Cruise Line Agencies of Alaska, Cruise Ship Calendar for 0 Page

More information

EMPLOYMENT APPLICATION {PLEASE Print Clearly}

EMPLOYMENT APPLICATION {PLEASE Print Clearly} Date Received: Next Step: EMPLOYMENT APPLICATION {PLEASE Print Clearly} Date: Position applied for: Personal Information Legal Name: First Last Middle Initial Address: Street City State Zip code How long

More information

TIMESHEET EXCEL TEMPLATES USER GUIDE. MS-Excel Tool User Guide

TIMESHEET EXCEL TEMPLATES USER GUIDE. MS-Excel Tool User Guide TIMESHEET EXCEL TEMPLATES USER GUIDE MS-Excel Tool User Guide This Excel-based electronic timesheet records the time the employee starts work, breaks for lunch, returns to work after lunch and the time

More information

Charts, Tables, and Graphs

Charts, Tables, and Graphs Charts, Tables, and Graphs The Mathematics sections of the SAT also include some questions about charts, tables, and graphs. You should know how to (1) read and understand information that is given; (2)

More information

Overtime Pay. 1. Am I entitled to overtime pay? 2. How do I calculate my overtime pay? YOUR LEGAL RIGHTS

Overtime Pay. 1. Am I entitled to overtime pay? 2. How do I calculate my overtime pay? YOUR LEGAL RIGHTS Overtime Pay YOUR LEGAL RIGHTS If you work more than 40 hours a week, more than 8 hours a day, or 7 days in a row, you may be entitled to overtime pay for that additional work. Employees paid by a salary,

More information

SAFE Employment Application

SAFE Employment Application SAFE Employment Application Name: Date: List names that you have worked under other than above: Mailing Home Position Desired: Salary Expected: Full Time: Part-time: Temporary: How were you referred to

More information

Collaboration for Success

Collaboration for Success Office of Operations 2014 Fall Conference October 7-9 Collaboration for Success Fair Labor Standards Act: Overtime Rules New York State Office of the State Comptroller Thomas P. DiNapoli, Comptroller Office

More information

Linear Programming II: Minimization 2006 Samuel L. Baker Assignment 11 is on page 16.

Linear Programming II: Minimization 2006 Samuel L. Baker Assignment 11 is on page 16. LINEAR PROGRAMMING II 1 Linear Programming II: Minimization 2006 Samuel L. Baker Assignment 11 is on page 16. Introduction A minimization problem minimizes the value of the objective function rather than

More information

U11 Boys Black March 21st Monday 6:00-7:30 p.m. Damien Training Field 2 March 24th Thursday 4:30-6:00 p.m. Damien Training Field 2 March 28th Monday 6

U11 Boys Black March 21st Monday 6:00-7:30 p.m. Damien Training Field 2 March 24th Thursday 4:30-6:00 p.m. Damien Training Field 2 March 28th Monday 6 U11 Boys Navy March 21st Monday 4:30-6:00 p.m. Damien Training Field 2 March 24th Thursday 6:00-7:30 p.m. Damien Training Field 2 March 28th Monday 4:30-6:00 p.m. Damien Training Field 2 March 31st Thursday

More information

Monday Tuesday Wednesday Thursday Friday Saturday Sunday. Day 4 20-Minute Aerobics Solution. Day 3 Lower Body Weight Training

Monday Tuesday Wednesday Thursday Friday Saturday Sunday. Day 4 20-Minute Aerobics Solution. Day 3 Lower Body Weight Training Your -Week -for-life Schedule Week Week Week 3 Week Week Week Week Week Week Week Week Week Monday Tuesday Wednesday Thursday Friday Saturday Sunday Day Day Day Day Day Day 3 Day 3 Day Day Day Day Day

More information

DECEMBER 2015 PTAB Public Hearing Schedule

DECEMBER 2015 PTAB Public Hearing Schedule IPR 2015-00021 Tuesday, December 01, 2015 9:00 AM A ALEXANDRIA, VA 2013-003491 12422863 Tuesday, December 01, 2015 9:00 AM (MST) 14-133 DENVER, CO 2013-003763 11839384 Tuesday, December 01, 2015 9:00 AM

More information

Pay Guide - Hospitality Industry (General) Award 2010 [MA000009]

Pay Guide - Hospitality Industry (General) Award 2010 [MA000009] Pay Guide - Hospitality Industry (General) Award 2010 [MA000009] Published 28 June 2016 Pay rates change from 1 July each year, the rates in this guide apply from 01 July 2016. Information about the definition

More information

Strategy Deployment Through Collaborative Planning. Linking the Strategy to Practical Activity

Strategy Deployment Through Collaborative Planning. Linking the Strategy to Practical Activity Strategy Deployment Through Collaborative Planning Linking the Strategy to Practical Activity Establish the Strategic Goal. After the Collaborative Planning activity Collaborative Planning iterative and

More information

New Year Holiday Period Traffic Fatality Estimate, 2015-2016

New Year Holiday Period Traffic Fatality Estimate, 2015-2016 New Year Holiday Period Traffic Fatality Estimate, 2015-2016 Prepared by Statistics Department National Safety Council December 2, 2015 Holiday period definition New Year's Day is January 1 and it is observed

More information

CPLEX Tutorial Handout

CPLEX Tutorial Handout CPLEX Tutorial Handout What Is ILOG CPLEX? ILOG CPLEX is a tool for solving linear optimization problems, commonly referred to as Linear Programming (LP) problems, of the form: Maximize (or Minimize) c

More information

Pay Guide - Contract Call Centres Award 2010 [MA000023]

Pay Guide - Contract Call Centres Award 2010 [MA000023] Pay Guide - Contract Call Centres Award 2010 [MA000023] Published 28 June 2016 Pay rates change from 1 July each year, the rates in this guide apply from 01 July 2016. Information about the definition

More information

Rural Wage Guide 2015/2016

Rural Wage Guide 2015/2016 Rural Wage Guide 2015/2016 Pastoral Award Shearing Operations NSW Farmers Industrial Association Rural Wage Guide Rural Wage Guide 2015/2016 Pastoral Award - Shearing Operations Welcome to the Rural Wage

More information

ASPECTS OF AGGREGATE PLANNING. Aggregate planning focuses on intermediate-rang production planning problems.

ASPECTS OF AGGREGATE PLANNING. Aggregate planning focuses on intermediate-rang production planning problems. ASPECTS OF AGGREGATE PLANNING Aggregate planning focuses on intermediate-rang production planning problems. The aggregate production plan states in general terms the total amount of output that is the

More information

Proposal for 48/72 Schedule

Proposal for 48/72 Schedule Disclaimer! This presentation is informational in nature only and is NOT at this time endorsed, supported, or under consideration by either Fire Management or the Local s E-Board & Directors - Rather it

More information

Linear Programs: Variables, Objectives and Constraints

Linear Programs: Variables, Objectives and Constraints 8 Linear Programs: Variables, Objectives and Constraints The best-known kind of optimization model, which has served for all of our examples so far, is the linear program. The variables of a linear program

More information

1 Aggregate Production Planning

1 Aggregate Production Planning IEOR 4000: Production Management Lecture 5 Professor Guillermo Gallego 9 October 2001 1 Aggregate Production Planning Aggregate production planning is concerned with the determination of production, inventory,

More information

Sample Schedule FOUR-TEAM LEAGUE

Sample Schedule FOUR-TEAM LEAGUE Little League Regulation VII requires a league to play not less than two games per week and 12 games per team per season. The sample schedules on the following pages provide adequate games for the situations

More information

1 2 3 4 5 Demand 150 170 180 160 160

1 2 3 4 5 Demand 150 170 180 160 160 MGT 3110: Exam 2 Study Guide 1. What is aggregate planning? What is its purpose? 2. What are demand options for aggregate planning? Give examples and discuss the effects of each. 3. Why is there a need

More information

Biweekly Pay Transition. Non-Exempts to a biweekly pay cycle

Biweekly Pay Transition. Non-Exempts to a biweekly pay cycle Biweekly Pay Transition Non-Exempts to a biweekly pay cycle 1 Overview Biweekly pay overview Pay cycle comparison Hourly pay rate Payroll Deductions Moving Forward Employee Preparation Staying Informed

More information

Regional Membership Supplement. USA Canada Caribbean Islands 417-EN (313)

Regional Membership Supplement. USA Canada Caribbean Islands 417-EN (313) USA Canada Caribbean Islands 2013 417-EN (313) 2 Introduction This resource accompanies Strategies for Attracting & Engaging Members (417). The supplement contains regional data and membership trends that

More information

Achievement Test Administration Schedule: January 2016

Achievement Test Administration Schedule: January 2016 Achievement Test Administration Schedule: January 2016 Note: Achievement tests must be administered according to the dates and times indicated in this schedule, unless an alternate schedule has been approved

More information

Linear Programming Supplement E

Linear Programming Supplement E Linear Programming Supplement E Linear Programming Linear programming: A technique that is useful for allocating scarce resources among competing demands. Objective function: An expression in linear programming

More information

A Production Planning Problem

A Production Planning Problem A Production Planning Problem Suppose a production manager is responsible for scheduling the monthly production levels of a certain product for a planning horizon of twelve months. For planning purposes,

More information

eday Lessons Physical Education: High School PE I, PE II, and Advanced PE

eday Lessons Physical Education: High School PE I, PE II, and Advanced PE Physical Education: High School PE I, PE II, and Advanced PE Lesson #1: High School Physical Education E-Lessons, PE I, PE II, and Advanced PE. Standard 3 Participates regularly in physical activity. Grade

More information

Payroll Tax Requirements

Payroll Tax Requirements Payroll Tax Requirements 2016 Federal Payroll Tax Rates New federal income tax withholding tables will be issued for 2016. This information will be included in IRS Publication 15 (Circular E). FICA and

More information

Demand forecasting & Aggregate planning in a Supply chain. Session Speaker Prof.P.S.Satish

Demand forecasting & Aggregate planning in a Supply chain. Session Speaker Prof.P.S.Satish Demand forecasting & Aggregate planning in a Supply chain Session Speaker Prof.P.S.Satish 1 Introduction PEMP-EMM2506 Forecasting provides an estimate of future demand Factors that influence demand and

More information

TEACHING AGGREGATE PLANNING IN AN OPERATIONS MANAGEMENT COURSE

TEACHING AGGREGATE PLANNING IN AN OPERATIONS MANAGEMENT COURSE TEACHING AGGREGATE PLANNING IN AN OPERATIONS MANAGEMENT COURSE Johnny C. Ho, Turner College of Business, Columbus State University, Columbus, GA 31907 David Ang, School of Business, Auburn University Montgomery,

More information

COMPENSATION POLICY DOCUMENTATION OF LABOR COSTS In the OPERATION OF THE CACFP REQUIRED by FNS Instruction 796-2, Rev 3

COMPENSATION POLICY DOCUMENTATION OF LABOR COSTS In the OPERATION OF THE CACFP REQUIRED by FNS Instruction 796-2, Rev 3 COMPENSATION POLICY DOCUMENTATION OF LABOR COSTS In the OPERATION OF THE CACFP REQUIRED by FNS Instruction 796-2, Rev 3 This sample for documenting Labor Costs has been created to provide a guideline for

More information

The following information has been obtained in relation to the contract:

The following information has been obtained in relation to the contract: PERFORMANCE MANAGEMENT WEEK 10-QUESTIONS VARIANCE ANALYSIS CONTACT NUMBER: 08038400843 CONTACT DAYS: FRIDAYS AND SATURDAYS 8PM TO 9PM TOPIC: STRATEGIC RELEVANT COST - CHAPTER 8 Question 1 DLW is a company

More information

Temporary Employment Hiring Manager Guidelines

Temporary Employment Hiring Manager Guidelines Temporary Employment Hiring Manager Guidelines Our mission is to provide outstanding customer service and quality leadership to the university community as well as to recruit and retain a diverse workforce.

More information

Pay Guide - Plumbing and Fire Sprinklers Award 2010 [MA000036]

Pay Guide - Plumbing and Fire Sprinklers Award 2010 [MA000036] Pay Guide - Plumbing and Fire Sprinklers Award 2010 [MA000036] Published 12 May 2016 Pay rates change from 1 July each year, the rates in this guide apply from 01 January 2016. Information about rates

More information

Pay Guide - Children's Services Award 2010 [MA000120]

Pay Guide - Children's Services Award 2010 [MA000120] Pay Guide - Children's Services Award 2010 [MA000120] Published 28 June 2016 Pay s change from 1 July each year, the s in this guide apply from 01 July 2016. Information about the definition and operation

More information

Address: Street. If you are under 18 years of age, do you have a work permit? Yes If you have ever worked under another name, please identify:

Address: Street. If you are under 18 years of age, do you have a work permit? Yes If you have ever worked under another name, please identify: APPLICATION FOR EMPLOYMENT Miles farmers market 28560 Miles Road, Solon, OH 44139 ph 440.248.5222 toll free 800.646.4537 fx 440.248.7518 www.milesfarmersmarket.com Thank you for your interest in applying

More information

MOS 3330 Test 2 Review Problems & Solutions

MOS 3330 Test 2 Review Problems & Solutions MOS 3330 Test 2 Review Problems & Solutions General Information Test date, time, location: See the course outline See also the course web site: dan.uwo.ca/courses/3330 Test time conflict (due to having

More information

FALL 2015 ACADEMIC CALENDARS

FALL 2015 ACADEMIC CALENDARS 1 FALL 2015 ACADEMIC CALENDARS FALL 2015 (August 24, 2015-December 17, 2015) I June 13, Saturday II July 1, Wednesday Employer Paid Students Spring Balance Due in Full Summer Balances Due in Full August

More information

Chapter 2 Solving Linear Programs

Chapter 2 Solving Linear Programs Chapter 2 Solving Linear Programs Companion slides of Applied Mathematical Programming by Bradley, Hax, and Magnanti (Addison-Wesley, 1977) prepared by José Fernando Oliveira Maria Antónia Carravilla A

More information

SAMPLE PARENTING TIME GUIDELINES. 1. Both parents are fit and able to provide care for the children

SAMPLE PARENTING TIME GUIDELINES. 1. Both parents are fit and able to provide care for the children SAMPLE PARENTING TIME GUIDELINES I ASSUMPTIONS: These Guidelines assume that: 1. Both parents are fit and able to provide care for the children 2. Both parents desire to have a meaningful, ongoing relationship

More information

IN TOUGH ECONOMIC TIMES: 4 Key Considerations & 7 Creative Solutions for Immediate Savings

IN TOUGH ECONOMIC TIMES: 4 Key Considerations & 7 Creative Solutions for Immediate Savings REDUCING THE COSTS OF CONTINUOUS OPERATING SCHEDULES IN TOUGH ECONOMIC TIMES: 4 Key Considerations & 7 Creative Solutions for Immediate Savings Bill Davis, Vice President of Operations INTRODUCTION When

More information

M-DCPS 2014-2015 Mathematics Department K-8 i-ready Implementation Plan

M-DCPS 2014-2015 Mathematics Department K-8 i-ready Implementation Plan Recommended Mathematics Implementation Options: Option #1 (Please note recommended rotations for Model A and Model B on pages 3-4) Administer i-ready Diagnostic to all K-8 students enrolled in mathematics

More information

Time does not wait for us to learn one lesson before it moves us on to the next.

Time does not wait for us to learn one lesson before it moves us on to the next. 1 Time does not wait for us to learn one lesson before it moves us on to the next. Introduction to Payroll Entry This manual provides information needed to enter payroll for each location. This manual

More information

Production Planning & Control. Chapter 2. Aggregate Planning & Master Production Scheduling. Chapter2 1

Production Planning & Control. Chapter 2. Aggregate Planning & Master Production Scheduling. Chapter2 1 Production Planning & Control Chapter 2 Aggregate Planning & Master Production Scheduling Chapter2 1 Aggregate Planning & Master Production Scheduling W hy Aggregate Planning Is Necessary Fully load facilities

More information

Employee Central Payroll Time Sheet

Employee Central Payroll Time Sheet User Guide SAP SuccessFactors Employee Central Document Version: Q3 2016 August 5 PUBLIC Content 1 Payroll Time Sheet for Employees.... 7 1.1 Recording my Time....7 1.2 Payroll Time Sheet - Features &

More information

ACADEMIC CALENDAR 2016-2017 June 2016

ACADEMIC CALENDAR 2016-2017 June 2016 ACADEMIC CALENDAR 2016-2017 June 2016 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 6 Monday Classes of Regular Summer Session begin. 10 Friday DEGREE APPLICATION DEADLINE

More information

1) A 2) B 3) C 4) D 5) A & B 6) C & D

1) A 2) B 3) C 4) D 5) A & B 6) C & D LEVEL 1, PROBLEM 1 How many rectangles are there in the figure below? 9 A B C D If we divide the rectangle, into 4 regions A, B, C, D, the 9 rectangles are as follows: 1) A 2) B 3) C 4) D 5) A & B 6) C

More information

KS2 Missing Digits Non-Calculator Level 3/4 Number of practice sheets: 9 MathSphere MathSphere www.mathsphere.co.uk

KS2 Missing Digits Non-Calculator Level 3/4 Number of practice sheets: 9 MathSphere MathSphere www.mathsphere.co.uk Booster Pages KS Missing Digits Non-Calculator Level /4 Number of practice sheets: MathSphere Booster: KS: Missing Digits /4 Non-Calculator Page Notes Techniques to be used in this work include working

More information

Nasdaq Dubai TRADING HOLIDAYS AND SETTLEMENT CALENDAR 2016 - REVISION For Equities Outsourced to the DFM (T+2)

Nasdaq Dubai TRADING HOLIDAYS AND SETTLEMENT CALENDAR 2016 - REVISION For Equities Outsourced to the DFM (T+2) Nasdaq Dubai Notice No : 68/15 Date of Issue : 17 December 2015 Date of Expiry : Upon issue of replacement Circular Nasdaq Dubai TRADING HOLIDAYS AND SETTLEMENT CALENDAR 2016 - REVISION For Equities Outsourced

More information

AGGREGATE & CAPACITY PLANNING

AGGREGATE & CAPACITY PLANNING 7 Ir. Haery Sihombing/IP Pensyarah Fakulti Kejuruteraan Pembuatan Universiti Teknologi Malaysia Melaka AGGREGATE & CAPACITY PLANNING Aggregate Planning Determine the resource capacity needed to meet demand

More information

TILA RESPA Procedural Impacts Are You Ready? Presenters. CUNA Mutual Group 2015 All rights reserved. 1. July 7, 2015

TILA RESPA Procedural Impacts Are You Ready? Presenters. CUNA Mutual Group 2015 All rights reserved. 1. July 7, 2015 Presented by: TILA RESPA Procedural Impacts Presenters Jon Bundy Regulatory Compliance Manager CUNA Mutual Group 608-665-7101 jonathan.bundy@cunamutual.com Theresa Reinke LOANLINER Compliance Consultant

More information

Rose Bowl Aquatics Center Application for Employment

Rose Bowl Aquatics Center Application for Employment Rose Bowl Aquatics Center Application for Employment Applicants may be tested for illegal drugs PERSONAL INFORMATION Date Completed: Social Security Number: - - Present Last First Middle Maiden Number

More information

Farmer s Market Team Leader Job Description

Farmer s Market Team Leader Job Description Kuhn Orchards, LLC PO Box 95, 1041 Old Route 30 Cashtown, PA 17310 (717) 334-2722 (717) 337-2450 (f) sidkuhnorch@gmail.com www.kuhnorchards.com Farmer s Market Team Leader Job Description Duties Sales

More information

RENTAL INFORMATION. (310) 823-0048 mac@recreation.ucla.edu 14001 Fiji Way, Marina del Rey, California 90292. Catalina 14/RS Vision/Laser $15 $15 $30

RENTAL INFORMATION. (310) 823-0048 mac@recreation.ucla.edu 14001 Fiji Way, Marina del Rey, California 90292. Catalina 14/RS Vision/Laser $15 $15 $30 RENTAL INFORMATION (310) 823-0048 mac@recreation.ucla.edu 14001 Fiji Way, Marina del Rey, California 90292 RENTAL RATES TIER 1 CURRENTLY ENROLLED UCLA STUDENTS TIER 1 RECREATION MEMBERS TIER 2 PUBLIC Catalina

More information

1 How to request a tee time

1 How to request a tee time 17 Options Telephone Access 753-golf (4653) 1 To make a request 2 To verify, change or cancel a request 3 To reserve an unused tee time 4 To confirm, change or cancel a tee time reservation 6 For championship

More information

-2- City Carrier Assistants Joint Questions and Answers

-2- City Carrier Assistants Joint Questions and Answers M-01804 -2- City Carrier Assistants Joint Questions and Answers 1. What is the last date that transitional employees may be on the rolls? April1 0, 2013. 2. How will the provisions of Article 7.1.C be

More information

Scheduling Algorithm with Optimization of Employee Satisfaction

Scheduling Algorithm with Optimization of Employee Satisfaction Washington University in St. Louis Scheduling Algorithm with Optimization of Employee Satisfaction by Philip I. Thomas Senior Design Project http : //students.cec.wustl.edu/ pit1/ Advised By Associate

More information

Universidad del Turabo MANA 705 DL Workshop Eight W8_8_3 Aggregate Planning, Material Requirement Planning, and Capacity Planning

Universidad del Turabo MANA 705 DL Workshop Eight W8_8_3 Aggregate Planning, Material Requirement Planning, and Capacity Planning Aggregate, Material Requirement, and Capacity Topic: Aggregate, Material Requirement, and Capacity Slide 1 Welcome to Workshop Eight presentation: Aggregate planning, material requirement planning, and

More information

Vessel Name SAFMARINE CHAMBAL MAERSK CAIRO MAERSK CASABLANCA SAFMARINE CHACHAI 1118WW 1138WW 1158WW 1178WW. XIAMEN -- -- -- Sunday, July 03, 2016

Vessel Name SAFMARINE CHAMBAL MAERSK CAIRO MAERSK CASABLANCA SAFMARINE CHACHAI 1118WW 1138WW 1158WW 1178WW. XIAMEN -- -- -- Sunday, July 03, 2016 1118WW 1138WW 1158WW 1178WW XIAMEN -- -- -- Sunday, July 03, 2016 XIAMEN Sunday, June 12, 2016 Sunday, June 19, 2016 Sunday, June 26, 2016 -- NINGBO Wednesday, June 15, 2016 Wednesday, June 22, 2016 Wednesday,

More information

Fixed Cost. Marginal Cost. Fixed Cost. Marginal Cost

Fixed Cost. Marginal Cost. Fixed Cost. Marginal Cost 1. Complete the following table (round each answer to the nearest whole number): Output Total Variable Fixed Marginal Average Avg. Var. Avg. Fixed 0 30 1 35 60 3 110 4 00 5 30 6 600 Output Total Variable

More information

Ithaca College London Center. Guidelines for application and participation Important dates: Summer/Fall 2016 and Spring 2017 Cost estimates

Ithaca College London Center. Guidelines for application and participation Important dates: Summer/Fall 2016 and Spring 2017 Cost estimates Ithaca College London Center Guidelines for application and participation Important dates: Summer/Fall 2016 and Spring 2017 Cost estimates 1/18/2016 Ithaca College London Center: Guidelines for application,

More information

New York Marathon Train Start Date: May 6, 2013

New York Marathon Train Start Date: May 6, 2013 Start Date: Gun Times: Variable, around 1 FOCUS: Build Volume (Low Heart Rate) Form & Base Phase One Monday Tuesday Wednesday Thursday Friday Saturday Sunday Notes Pace = slower Pace = slower Pace = slower

More information

Planning and Scheduling Operations in Dynamic Supply Chain

Planning and Scheduling Operations in Dynamic Supply Chain Planning and Scheduling Operations in Dynamic Supply Chain Sung Joo Bae Assistant Professor Yonsei University 14 1 Supply Chain Management 14 2 Supply Chains Tier 3 Poland USA Canada Australia Malaysia

More information

ISTANBUL KEMERBURGAZ UNIVERSITY 2015-2016 ACADEMIC CALENDAR

ISTANBUL KEMERBURGAZ UNIVERSITY 2015-2016 ACADEMIC CALENDAR ISTANBUL KEMERBURGAZ UNIVERSITY - ACADEMIC CALENDAR FALL TERM Monday, March Applications of international students to undergraduate programs begin 2nd, Monday, April 27 Monday, Pre-registration for Special

More information

Models for Incorporating Block Scheduling in Blood Drive Staffing Problems

Models for Incorporating Block Scheduling in Blood Drive Staffing Problems University of Arkansas, Fayetteville ScholarWorks@UARK Industrial Engineering Undergraduate Honors Theses Industrial Engineering 5-2014 Models for Incorporating Block Scheduling in Blood Drive Staffing

More information

Sensitivity Analysis with Excel

Sensitivity Analysis with Excel Sensitivity Analysis with Excel 1 Lecture Outline Sensitivity Analysis Effects on the Objective Function Value (OFV): Changing the Values of Decision Variables Looking at the Variation in OFV: Excel One-

More information

MBA Curriculum Alignment Matrices California State University, Sacramento

MBA Curriculum Alignment Matrices California State University, Sacramento MBA 1.1 Communication Skills MBA 1.2 Goal Setting MBA 1.3 Strategy Formulation ECON 204 Lecture; required presentations; graded group activities; short essays on the exams Lecture; in-class activities;

More information

SET GOALS. Identify jobs that interest you and write the titles on the following page.

SET GOALS. Identify jobs that interest you and write the titles on the following page. SET GOALS What to Do On the next page you will identify specific jobs you are interested in researching and pursuing. Once you know more about a particular field or you want to explore career options,

More information

Non-Traditional Full-Time Assignments Otherwise Known as Traditional Part-Time Assignments:

Non-Traditional Full-Time Assignments Otherwise Known as Traditional Part-Time Assignments: Non-Traditional Full-Time Assignments Otherwise Known as Traditional Part-Time Assignments: No to Shifty Nifty (NTFT) By Clint Burelson, President Olympia Local APWU As shown in the statements below, the

More information

The University of Wisconsin Milwaukee Business Administration 478-Supply Chain Analytics Midterm 01 Oct. 8 at 9 PM

The University of Wisconsin Milwaukee Business Administration 478-Supply Chain Analytics Midterm 01 Oct. 8 at 9 PM The University of Wisconsin Milwaukee Business Administration 478-Supply Chain Analytics Midterm 01 Oct. 8 at 9 PM Note 1: This is a take-home exam and you have 48 hours to finish and submit it to the

More information

information available. There is a tremendous amount of sensitivity information, or information

information available. There is a tremendous amount of sensitivity information, or information Chapter 8 Sensitivity Analysis for Linear Programming Finding the optimal solution to a linear programming model is important, but it is not the only information available. There is a tremendous amount

More information

Pay Guide - Hair and Beauty Industry Award 2010 [MA000005]

Pay Guide - Hair and Beauty Industry Award 2010 [MA000005] Pay Guide - Hair and Beauty Industry Award 2010 [MA000005] Published 28 June 2016 Pay s change from 1 July each year, the s in this guide apply from 01 July 2016. Information about the definition and operation

More information

FRACTIONS. The student will be able to: Essential Fraction Vocabulary

FRACTIONS. The student will be able to: Essential Fraction Vocabulary FRACTIONS The student will be able to:. Perform basic operations with common fractions: addition, subtraction, multiplication, and division. Common fractions, such as /, /, and /, are used on the GED Test

More information

2016 BELMONT PARK SPRING / SUMMER MEET POST TIMES/WAGERING MENU

2016 BELMONT PARK SPRING / SUMMER MEET POST TIMES/WAGERING MENU 9 RACE CARD 1 1:30 WPS EX TRI SPR DD P3 P5 2 2:01 WPS EX TRI SPR DD P3 P4 QUI 3 2:32 WPS EX TRI SPR DD P3 4 3:04 WPS EX TRI SPR DD P3 P6 QUI 5 3:36 WPS EX TRI SPR DD P3 GS 6 4:09 WPS EX TRI SPR DD P3 P4

More information

What are some things to consider when deciding if a career is a good fit?

What are some things to consider when deciding if a career is a good fit? Career Fair: Career Research 1 4 CAREERS The BIG Idea What are some things to consider when deciding if a career is a good fit? AGENDA Approx. 45 minutes I. Warm Up: Career Fair Announcement and Expectations

More information

Lesson 2.2. 44 Lesson 2.2 ~ Adding Integers

Lesson 2.2. 44 Lesson 2.2 ~ Adding Integers Adding Integers Lesson 2.2 EXPLORE! integer Chips Integer chips are helpful for modeling integer operations. Each blue chip will represent the integer 1. Each red chip will represent the integer 1. When

More information

Feidhmeannacbt na Seirbhise Sliinte Health Service Executive

Feidhmeannacbt na Seirbhise Sliinte Health Service Executive Feidhmeannacbt na Seirbhise Sliinte Health Service Executive 01f1g an Stiurth6ra Naisiunta, Acmhainn1 Daonna Fe1dhmeannacht na Se1rbhisi Slainte Ospideal Dr Steevens' Baile Atha Cliath 8 Office of the

More information

8th Grade Personal Fitness Plan

8th Grade Personal Fitness Plan 8th Grade Personal Fitness Plan 2 Week Activity Log & 1 week Food Log Name: Period: Date: Personal Fitness Contract I,, am going to make a commitment to helping build my lifelong fitness and nutrition

More information

Bethalto Public Library District EMPLOYMENT PREVIEW

Bethalto Public Library District EMPLOYMENT PREVIEW EMPLOYMENT PREVIEW We are pleased that you are interested in employment with the Bethalto Public Library District. Please allow us to preview what you can expect while working for the Library. Public libraries

More information

You are ready to register for credit courses

You are ready to register for credit courses You are ready to register for credit courses This is done online through the MyConcordia portal The MyConcordia Portal is your key to: Tracking your application to a program Registering for courses and

More information

K.J.SOMAIYA JUNIOR COLLEGE OF ARTS & COMMERCE TIME-TABLE FOR HSC BOARD PRACTICAL EXAMINATION MATHEMATICS AND STATISTICS - 2016

K.J.SOMAIYA JUNIOR COLLEGE OF ARTS & COMMERCE TIME-TABLE FOR HSC BOARD PRACTICAL EXAMINATION MATHEMATICS AND STATISTICS - 2016 K.J.SOMAIYA JUNIOR COLLEGE OF ARTS & COMMERCE TIME-TABLE FOR HSC BOARD PRACTICAL EXAMINATION MATHEMATICS AND STATISTICS - 2016 Date : 04/02/2016 1 M297130 - M297407 1.00-2.00 4 2 M297415 - M297691 2.15-3.15

More information

Financial Mathematics

Financial Mathematics Financial Mathematics For the next few weeks we will study the mathematics of finance. Apart from basic arithmetic, financial mathematics is probably the most practical math you will learn. practical in

More information

IEOR 4404 Homework #2 Intro OR: Deterministic Models February 14, 2011 Prof. Jay Sethuraman Page 1 of 5. Homework #2

IEOR 4404 Homework #2 Intro OR: Deterministic Models February 14, 2011 Prof. Jay Sethuraman Page 1 of 5. Homework #2 IEOR 4404 Homework # Intro OR: Deterministic Models February 14, 011 Prof. Jay Sethuraman Page 1 of 5 Homework #.1 (a) What is the optimal solution of this problem? Let us consider that x 1, x and x 3

More information

Using CPLEX. =5 has objective value 150.

Using CPLEX. =5 has objective value 150. Using CPLEX CPLEX is optimization software developed and sold by ILOG, Inc. It can be used to solve a variety of different optimization problems in a variety of computing environments. Here we will discuss

More information

Pay Guide - Telecommunications Services Award 2010 [MA000041]

Pay Guide - Telecommunications Services Award 2010 [MA000041] Pay Guide - Telecommunications Services Award 2010 [MA000041] Published 28 June 2016 Pay s change from 1 July each year, the s in this guide apply from 01 July 2016. Information about the definition and

More information

Unit 13 Handling data. Year 4. Five daily lessons. Autumn term. Unit Objectives. Link Objectives

Unit 13 Handling data. Year 4. Five daily lessons. Autumn term. Unit Objectives. Link Objectives Unit 13 Handling data Five daily lessons Year 4 Autumn term (Key objectives in bold) Unit Objectives Year 4 Solve a problem by collecting quickly, organising, Pages 114-117 representing and interpreting

More information

12-week Half Marathon Training Program By Ben Wisbey

12-week Half Marathon Training Program By Ben Wisbey 12-week Half Marathon Training Program By Ben Wisbey Introduction The half marathon is often the intermediate goal for those runners looking at doing their first marathon. It is also the longest distance

More information

Pay Guide - Horse and Greyhound Training Award 2010 [MA000008]

Pay Guide - Horse and Greyhound Training Award 2010 [MA000008] Pay Guide - Horse and Greyhound Training Award 2010 [MA000008] Published 28 June 2016 Pay rates change from 1 July each year, the rates in this guide apply from 01 July 2016. Information about the definition

More information

Social and Community Services (SACS) Award (NSW) Social, Community, Home Care and Disability Services Industry (SCHCADS) Award 2010 1 December 2012.

Social and Community Services (SACS) Award (NSW) Social, Community, Home Care and Disability Services Industry (SCHCADS) Award 2010 1 December 2012. CSIR Pay Table Transitional pay table phasing in from the (SACS) Award (NSW) to the Social, Community, Home Care and Disability Services Industry (SCHCADS) Award 2010 This pay table sets out the rates

More information

FEBRUARY 2016 PTAB Public Hearing Schedule

FEBRUARY 2016 PTAB Public Hearing Schedule 2013-004485 11629982 Tuesday, February 02, 2016 9:00 AM (EST) B ALEXANDRIA, VA 2013-004694 12520565 Tuesday, February 02, 2016 9:00 AM (EST) B ALEXANDRIA, VA 2013-005264 13196232 Tuesday, February 02,

More information

Position Announcement Math Solutions Consultant (part- time position)

Position Announcement Math Solutions Consultant (part- time position) Position Announcement Math Solutions Consultant (part- time position) Math Solutions is seeking part- time consultants to join our Professional Development Team. Our goal is to provide long- term, systemic

More information

What's a backup cycle?

What's a backup cycle? In part three of our series on working with Macrium Reflect, we look at scheduling full, incremental and differential images as part of a regular backup cycle (this tutorial also applies to full, incremental

More information

This branch is closing but your bank is always open

This branch is closing but your bank is always open This branch is closing but your bank is always open This branch is closing, but your bank is always open Now more than ever, the way people choose to bank is changing as the digital revolution continues.

More information