Case study I: Advertising on the Web

Size: px
Start display at page:

Download "Case study I: Advertising on the Web"

Transcription

1 1 Case study I: Advertisig o the Web Geoveva Vargas-Solar Frech Coucil of Scietific Research, LIG & LAFMIA Labs Motevideo, 22 d November 4 th December, 2015 INFORMATIQUE

2 + Ifiite data / App 2 High dim. data Graph data Ifiite data Machie learig Apps Locality sesitive hashig PageRak, SimRak Filterig data streams SVM Recommeder systems Clusterig Commuity Detectio Web advertisig Decisio Trees Associatio Rules Dimesioality reductio Spam Detectio Queries o streams Perceptro, knn Duplicate documet detectio

3 + Olie Algorithms 3 Classic model of algorithms You get to see the etire iput, the compute some fuctio of it I this cotext, offlie algorithm Olie Algorithms You get to see the iput oe piece at a time, ad eed to make irrevocable decisios alog the way Similar to the data stream model

4 Olie Bipartite Matchig

5 + Example: Bipartite Matchig 5 1 a 2 b 3 c Boys 4 d Girls Nodes: Boys ad Girls; Edges: Prefereces Goal: Match boys to girls so that maximum umber of prefereces is satisfied

6 + Example: Bipartite Matchig 6 1 a 2 b 3 c Boys 4 d Girls M = {(1,a),(2,b),(3,d)} is a matchig Cardiality of matchig = M = 3

7 + Example: Bipartite Matchig 7 1 a 2 b 3 c Boys 4 d Girls M = {(1,c),(2,b),(3,d),(4,a)} is a perfect matchig Perfect matchig all vertices of the graph are matched Maximum matchig a matchig that cotais the largest possible umber of matches

8 + Matchig Algorithm 8 Problem: Fid a maximum matchig for a give bipartite graph A perfect oe if it exists There is a polyomial-time offlie algorithm based o augmetig paths (Hopcroft & Karp 1973, see But what if we do ot kow the etire graph upfrot?

9 + Olie Graph Matchig Problem 9 Iitially, we are give the set boys I each roud, oe girl s choices are revealed That is, girl s edges are revealed At that time, we have to decide to either: Pair the girl with a boy Do ot pair the girl with ay boy Example of applicatio: Assigig tasks to servers

10 + Olie Graph Matchig: Example a b c d (1,a) (2,b) (3,d)

11 + Greedy Algorithm 11 Greedy algorithm for the olie graph matchig problem: Pair the ew girl with ay eligible boy If there is oe, do ot pair girl How good is the algorithm?

12 + Competitive Ratio 12 For iput I, suppose greedy produces matchig M greedy while a optimal matchig is M opt Competitive ratio = mi all possible iputs I ( M greedy / M opt ) (what is greedy s worst performace over all possible iputs I)

13 + Aalyzig the Greedy Algorithm 13 Cosider a case: M greedy M opt Cosider the set G of girls matched i M opt but ot i M greedy 1 M opt a The every boy B adjacet to girls i G is already matched i M greedy : If there would exist such o-matched (by M greedy ) boy adjacet to a o-matched girl the greedy would have matched them Sice boys B are already matched i M greedy the (1) M greedy B B={ } b c d G={ }

14 Web advertisemet

15 + History of Web Advertisig 15 Baer ads ( ) Iitial form of web advertisig Popular websites charged X$ for every 1,000 impressios of the ad Called CPM rate (Cost per thousad impressios) Modeled similar to TV, magazie ads From utargeted to demographically targeted Low click-through rates Low ROI for advertisers CPM cost per mille Mille thousad i Lati

16 + Performace-based Advertisig 16 Itroduced by Overture aroud 2000 Advertisers bid o search keywords Whe someoe searches for that keyword, the highest bidder s ad is show Advertiser is charged oly if the ad is clicked o Similar model adapted by Google with some chages aroud 2002 Called Adwords

17 + Ads vs. Search Results 17

18 + Web Performace-based advertisig works! Multi-billio-dollar idustry Iterestig problem: What ads to show for a give query? If I am a advertiser, which search terms should I bid o ad how much should I bid?

19 Adwords Problem 19 Give: 1. A set of bids by advertisers for search queries 2. A click-through rate for each advertiser-query pair 3. A budget for each advertiser (say for 1 moth) 4. A limit o the umber of ads to be displayed with each search query Respod to each search query with a set of advertisers such that: 1. The size of the set is o larger tha the limit o the umber of ads per query 2. Each advertiser has bid o the search query 3. Each advertiser has eough budget left to pay for the ad if it is clicked upo

20 + Adwords Problem 20 A stream of queries arrives at the search egie: q 1, q 2, Several advertisers bid o each query Whe query q i arrives, search egie must pick a subset of advertisers whose ads are show Goal: Maximize search egie s reveues Simple solutio: Istead of raw bids, use the expected reveue per click (i.e., Bid*CTR Click Through Rate) Clearly we eed a olie algorithm!

21 + The Adwords Iovatio 21 Advertiser Bid CTR Bid * CTR A $1.00 1% 1 cet B $0.75 2% 1.5 cets C $ % cets Click through rate Expected reveue

22 + The Adwords Iovatio 22 Advertiser Bid CTR Bid * CTR B $0.75 2% 1.5 cets C $ % cets A $1.00 1% 1 cet

23 + Complicatios: Budget 23 Two complicatios: Budget CTR of a ad is ukow Each advertiser has a limited budget Search egie guaratees that the advertiser will ot be charged more tha their daily budget

24 + Complicatios: CTR 24 CTR: Each ad has a differet likelihood of beig clicked Advertiser 1 bids $2, click probability = 0.1 Advertiser 2 bids $1, click probability = 0.5 Clickthrough rate (CTR) is measured historically Very hard problem: Exploratio vs. exploitatio Exploit: Should we keep showig a ad for which we have good estimates of click-through rate or Explore: Shall we show a brad ew ad to get a better sese of its click-through rate

25 25

26 + Greedy Algorithm 26 Our settig: Simplified eviromet There is 1 ad show for each query All advertisers have the same budget B All ads are equally likely to be clicked Value of each ad is the same (=1) Simplest algorithm is greedy: For a query pick ay advertiser who has bid 1 for that query Competitive ratio of greedy is 1/2

27 + Bad Sceario for Greedy 27 Two advertisers A ad B A bids o query x, B bids o x ad y Both have budgets of $4 Query stream: x x x x y y y y Worst case greedy choice: B B B B Optimal: A A A A B B B B Competitive ratio = ½ This is the worst case! Note: Greedy algorithm is determiistic it always resolves draws i the same way

28 + BALANCE Algorithm [MSVV] 28 BALANCE Algorithm by Mehta, Saberi, Vazirai, ad Vazirai For each query, pick the advertiser with the largest uspet budget Break ties arbitrarily (but i a determiistic way)

29 + Example: BALANCE 29 Two advertisers A ad B A bids o query x, B bids o x ad y Both have budgets of $4 Query stream: x x x x y y y y BALANCE choice: A B A B B B Optimal: A A A A B B B B I geeral: For BALANCE o 2 advertisers Competitive ratio = ¾

30 + Aalyzig BALANCE 30 Cosider simple case (w.l.o.g.): 2 advertisers, A 1 ad A 2, each with budget B ( 1) Optimal solutio exhausts both advertisers budgets BALANCE must exhaust at least oe advertiser s budget: If ot, we ca allocate more queries Wheever BALANCE makes a mistake (both advertisers bid o the query), advertiser s uspet budget oly decreases Sice optimal exhausts both budgets, oe will for sure get exhausted Assume BALANCE exhausts A 2 s budget, but allocates x queries fewer tha the optimal Reveue: BAL = 2B - x

31 + Aalyzig Balace 31 Queries allocated to A 1 i the optimal solutio B Queries allocated to A 2 i the optimal solutio x y x y A 1 A 2 A 1 A 2 A 1 A 2 Not used Not used x x B B Optimal reveue = 2B Assume Balace gives reveue = 2B-x = B+y Uassiged queries should be assiged to A 2 (if we could assig to A 1 we would sice we still have the budget) Goal: Show we have y x Case 1) ½ of A 1 s queries got assiged to A 2 the y ³ B/2 Case 2) > ½ of A 1 s queries got assiged to A 2 the x B/2 ad x + y = B Balace reveue is miimum for x = y = B/2 Miimum Balace reveue = 3B/2 Competitive Ratio = 3/4 BALANCE exhausts A 2 s budget

32 + BALANCE: Geeral Result 32 I the geeral case, worst competitive ratio of BALANCE is 1 1/e = approx Iterestigly, o olie algorithm has a better competitive ratio! Let s see the worst case example that gives this ratio

33 + Worst case for BALANCE 33 N advertisers: A 1, A 2, A N Each with budget B > N Queries: N B queries appear i N rouds of B queries each Biddig: Roud 1 queries: bidders A 1, A 2,, A N Roud 2 queries: bidders A 2, A 3,, A N Roud i queries: bidders A i,, A N Optimum allocatio: Allocate roud i queries to A i Optimum reveue N B

34 + BALANCE Allocatio 34 A 1 A 2 A 3 A N-1 A N B/N B/(N-2) B/(N-1) BALANCE assigs each of the queries i roud 1 to N advertisers. After k rouds, sum of allocatios to each of advertisers A k,,a N k21 B is S k = S k-1 = = S N = i61 N2(i21) If we fid the smallest k such that S k B, the after k rouds we caot allocate ay queries to ay advertiser

35 + BALANCE: Aalysis 35 B/1 B/2 B/3 B/(N-(k-1)) B/(N-1) B/N S 1 S 2 S k = B 1/1 1/2 1/3 1/(N-(k-1)) 1/(N-1) 1/N S 1 S 2 S k = 1

36 BALANCE: Aalysis Fact: H = i61 1/i Result due to Euler l for large 1/1 1/2 1/3 1/(N-(k-1)) 1/(N-1) 1/N l(n)-1 l(n) S k = 1 implies: H N2k = l (N) 1 = l ( N e ) We also kow: H N2k = l (N k) S k = 1 So: N k = N e The: k = N(1 1 e ) N terms sum to l(n). Last k terms sum to 1. First N-k terms sum to l(n-k) but also to l(n)-1 36

37 + BALANCE: Aalysis 37 So after the first k=n(1-1/e) rouds, we caot allocate a query to ay advertiser Reveue = B N (1-1/e) Competitive ratio = 1-1/e

38 + Geeral Versio of the Problem 38 Arbitrary bids ad arbitrary budgets! Cosider we have 1 query q, advertiser i Bid = x i Budget = b i I a geeral settig BALANCE ca be terrible Cosider two advertisers A 1 ad A 2 A 1 : x 1 = 1, b 1 = 110 A 2 : x 2 = 10, b 2 = 100 Cosider we see 10 istaces of q BALANCE always selects A 1 ad ears 10 Optimal ears 100

39 Geeralized BALANCE Arbitrary bids: cosider query q, bidder i Bid = x i Budget = b i Amout spet so far = m i Fractio of budget left over f i = 1-m i /b i Defie ψ i (q) = x i (1-e -f i) Allocate query q to bidder i with largest value of ψ i (q) Same competitive ratio (1-1/e) 39

CS246: Mining Massive Datasets Jure Leskovec, Stanford University

CS246: Mining Massive Datasets Jure Leskovec, Stanford University CS246: Mining Massive Datasets Jure Leskovec, Stanford University http://cs246.stanford.edu 2 Classic model of algorithms You get to see the entire input, then compute some function of it In this context,

More information

Classic model of algorithms

Classic model of algorithms Note to other teachers and users of these slides: We would be delighted if you found this our material useful in giving your own lectures. Feel free to use these slides verbatim, or to modify them to fit

More information

Introduction to Data Mining

Introduction to Data Mining Introduction to Data Mining Lecture #16: Advertising Seoul National University 1 In This Lecture Learn the online bipartite matching problem, the greedy algorithm of it, and the notion of competitive ratio

More information

CS246: Mining Massive Datasets Jure Leskovec, Stanford University

CS246: Mining Massive Datasets Jure Leskovec, Stanford University CS246: Mining Massive Datasets Jure Leskovec, Stanford University http://cs246.stanford.edu 3/5/18 Jure Leskovec, Stanford C246: Mining Massive Datasets 2 High dim. data Graph data Infinite data Machine

More information

CS246: Mining Massive Datasets Jure Leskovec, Stanford University

CS246: Mining Massive Datasets Jure Leskovec, Stanford University CS246: Mining Massive Datasets Jure Leskovec, Stanford University http://cs246.stanford.edu 3/8/2015 Jure Leskovec, Stanford C246: Mining Massive Datasets 2 High dim. data Graph data Infinite data Machine

More information

CS 345 Data Mining. Online algorithms Search advertising

CS 345 Data Mining. Online algorithms Search advertising CS 345 Data Mining Online algorithms Search advertising Online algorithms Classic model of algorithms You get to see the entire input, then compute some function of it In this context, offline algorithm

More information

CS246: Mining Massive Datasets Jure Leskovec, Stanford University.

CS246: Mining Massive Datasets Jure Leskovec, Stanford University. CS246: Mining Massive Datasets Jure Leskovec, Stanford University http://cs246.stanford.edu 2 Classic model of algorithms You get to see the entire input, then compute some function of it In this context,

More information

Jeffrey D. Ullman Stanford University/Infolab. Slides mostly developed by Anand Rajaraman

Jeffrey D. Ullman Stanford University/Infolab. Slides mostly developed by Anand Rajaraman Jeffrey D. Ullman Stanford University/Infolab Slides mostly developed by Anand Rajaraman 2 Classic model of (offline) algorithms: You get to see the entire input, then compute some function of it. Online

More information

Mining of Massive Datasets Jure Leskovec, AnandRajaraman, Jeff Ullman Stanford University

Mining of Massive Datasets Jure Leskovec, AnandRajaraman, Jeff Ullman Stanford University Note to other teachers and users of these slides: We would be delighted if you found this our material useful in giving your own lectures. Feel free to use these slides verbatim, or to modify them to fit

More information

CS425: Algorithms for Web Scale Data

CS425: Algorithms for Web Scale Data CS425: Algorithms for Web Scale Data Most of the slides are from the Mining of Massive Datasets book. These slides have been modified for CS425. The original slides can be accessed at: www.mmds.org J.

More information

What about streaming data?

What about streaming data? What about streaming data? 1 The Stream Model Data enters at a rapid rate from one or more input ports Such data are called stream tuples The system cannot store the entire (infinite) stream Distribution

More information

Jianqing Chen. Jan Stallaert

Jianqing Chen. Jan Stallaert RESEARCH ARTICLE AN ECONOMIC ANALYSIS OF ONLINE ADVERTISING USING EHAVIORAL TARGETING Jiaqig Che Jidal School of Maagemet, The Uiversity of Texas at Dallas, 8 West Campbell Road, Richardso, TX 758 U.S.A.

More information

Types of simulation w.r.t. output analysis

Types of simulation w.r.t. output analysis Types of simulatio w.r.t. output aalysis Termiatig: Edpoit of simulatio ru is defied by your model. No-termiatig 0 Aalysis: first cosider termiatig simulatio i output result, value of a certai performace

More information

Everybody Reads The Batavian

Everybody Reads The Batavian Everybody Reads The Batavia The Batavia is the local ews site that more people visit everyday. We were very impressed with the respose we received for a special sale we ra recetly. We polled our customers

More information

A Note on Price and Quantity Competition in Differentiated Oligopolies

A Note on Price and Quantity Competition in Differentiated Oligopolies August 17, 1999 A Note o Price ad Quatity Competitio i Differetiated Oligopolies Joas Häcer Departmet of Ecoomics, Stocholm Uiversity S-106 91 Stocholm, Swede Phoe: +46-8-163049 Fax: +46-8-159482 E-mail:

More information

Simulation-based Switching Algorithm for Inventory Management in a Multi-echelon Supply Chain

Simulation-based Switching Algorithm for Inventory Management in a Multi-echelon Supply Chain Simulatio-based Switchig Algorithm for Ivetory Maagemet i a Multi-echelo Supply Chai GALINA MERKURYEVA (a) ad OLESYA VECHERINSKA (b) Departmet of Modellig ad Simulatio Riga Techical Uiversity 1 Kalku Street,

More information

BaanERP Distribution Item Sales Data

BaanERP Distribution Item Sales Data BaaERP Distributio Module Procedure UP028A US Documetiformatio Documet Documet code : UP028A US Documet group : User Documetatio Documet title : Editio : A Date : May 1998 Copyright 1998 Baa Developmet

More information

CS/ECE 715 Spring 2004 Homework 6 Solution(Due date: April 1)

CS/ECE 715 Spring 2004 Homework 6 Solution(Due date: April 1) CS/ECE 715 Sprig 004 Homework 6 Solutio(Due date: April 1) Problem 1. A commuicatio lik provides 1 Mbps for commuicatios betwee the earth ad the moo. The lik seds color images from the moo. Each image

More information

Advertising on the Web

Advertising on the Web Chapter 8 Advertising on the Web One of the big surprises of the 21st century has been the ability of all sorts of interesting Web applications to support themselves through advertising, rather than subscription.

More information

Littlehampton branch closure 06/06/2018. Help and support for personal and business customers

Littlehampton branch closure 06/06/2018. Help and support for personal and business customers Littlehampto brach closure 06/06/2018 Help ad support for persoal ad busiess customers Facts are correct as at 09/02/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers of

More information

Josef Mandelbaum President and CEO American Greetings Monday, May 7, 2007

Josef Mandelbaum President and CEO American Greetings Monday, May 7, 2007 How to Make Each Subscriber More Profitable Retetio From Trial Josef Madelbaum Presidet ad CEO America Greetigs Moday, May 7, 27 Up-sellig Dyamics 1. Upo completio of a sale i a order path, there is a

More information

West Ealing branch closure 22/05/2018. Help and support for personal and business customers

West Ealing branch closure 22/05/2018. Help and support for personal and business customers West Ealig brach closure 22/05/2018 Help ad support for persoal ad busiess customers Facts are correct as at 12/02/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers of

More information

Calculating Approximate PPPs Using the Price Factor Method

Calculating Approximate PPPs Using the Price Factor Method Iteratioal Compariso Program Calculatig Approximate PPPs Usig the Price Factor Method Global Office Operatioal Material Table of Cotets 1. Pros ad cos of the Price Factor Method (PFM)... 3 2. From ex-factory

More information

Help and support for personal and business customers. Saltcoats branch closure 20/06/2018

Help and support for personal and business customers. Saltcoats branch closure 20/06/2018 Help ad support for persoal ad busiess customers Saltcoats brach closure 20/06/2018 Facts are correct as at 14/02/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers of Saltcoats

More information

Billingshurst branch closure 30/05/2018. Help and support for personal and business customers

Billingshurst branch closure 30/05/2018. Help and support for personal and business customers Billigshurst brach closure 30/05/2018 Help ad support for persoal ad busiess customers Facts are correct as at 06/02/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers of

More information

The Effects of Consignment Sales on Emission Allowance Auctions

The Effects of Consignment Sales on Emission Allowance Auctions The Effects of Cosigmet Sales o Emissio Allowace Auctios AERE Summer Coferece Breckeridge, Jue 9, 2015 Charles Holt & William Shobe Uiversity of Virgiia Motivatio Requirig the sale of a good with reveue

More information

1 1 1, ,000 1, , ,000 1, , ,000 1,150

1 1 1, ,000 1, , ,000 1, , ,000 1,150 . Which of the followig $,000 face-value securities has the lowest yield to maturity? A) a 5 percet coupo bod sellig for $,000 B) a 0 percet coupo bod sellig for $,000 C) a 5 percet coupo bod sellig for

More information

ORACLE COMMERCE CLOUD INTRODUCTION TO PROMOTIONS

ORACLE COMMERCE CLOUD INTRODUCTION TO PROMOTIONS ORACLE COMMERCE CLOUD INTRODUCTION TO PROMOTIONS INTRODUCTION Oracle Commerce Cloud makes it easy to create ad maage promotios, but we kow it takes more coordiatio creativity aalytical kow-how to deliver

More information

An Economic Order Quantity Model under the Policy of Batch-based Delay in Payment in JIT Purchasing

An Economic Order Quantity Model under the Policy of Batch-based Delay in Payment in JIT Purchasing Iteratioal Joural of Statistics ad Systems ISSN 0973-675 Volume 11, Number 1 (016), pp. 1-8 Research Idia Publicatios http://www.ripublicatio.com A Ecoomic Order Quatity Model uder the Policy of Batch-based

More information

Performance Analysis of Series Configuration Queueing System with Four Service Stations

Performance Analysis of Series Configuration Queueing System with Four Service Stations Proceedigs of the Iteratioal MultiCoferece of Egieers ad Computer Scietists 6 Vol II, IMECS 6, March 6-8, 6, Hog Kog Performace Aalysis of Series Cofiguratio Queueig System with Four Service Statios Yu-Li

More information

MRI Pilot Systems. Optimizing Treatment Strategies

MRI Pilot Systems. Optimizing Treatment Strategies MRI Pilot systems MRI Pilot Systems Optimizig Treatmet Strategies MRI Pilot systems P redict treatmet efficacy with MRI Pilot Systems. Meurer Research, Ic. (MRI) bega buildig products to ehace water ad

More information

Dartmouth branch closure 11/06/2018. Help and support for personal and business customers

Dartmouth branch closure 11/06/2018. Help and support for personal and business customers Dartmouth brach closure 11/06/2018 Help ad support for persoal ad busiess customers Facts are correct as at 09/03/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers of Dartmouth

More information

Equilibrium concentration of interstitial atoms

Equilibrium concentration of interstitial atoms Equilibrium cocetratio of iterstitial atoms may metals, especially i trasitio metals, iterstitial atoms such as carbo, itroge, oxyge, hydroge ca be preset up to a certai extet depedig o the metal. There

More information

An Approach to Reduce Test Effort by Using Machine Learning Techniques

An Approach to Reduce Test Effort by Using Machine Learning Techniques IJCSNS Iteratioal Joural of Computer Sciece ad Network Security, VOL.15 No.9, September 2015 99 A Approach to Reduce Test Effort by Usig Machie Learig Techiques Mohammed Iayathulla, Silpa C Departmet of

More information

Algorithmic Game Theory

Algorithmic Game Theory Algorithmic Game Theory Spring 2014 Assignment 3 Instructor: Mohammad T. Hajiaghayi Due date: Friday, April 18, 2014 before 4pm Please TYPE in your solutions after each problem and put your homework in

More information

Help and support for personal and business customers. Lockerbie branch closure 21/06/2018

Help and support for personal and business customers. Lockerbie branch closure 21/06/2018 Help ad support for persoal ad busiess customers Lockerbie brach closure 21/06/2018 Facts are correct as at 14/02/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers of Lockerbie

More information

Totnes branch closure 21/05/2018. Help and support for personal and business customers

Totnes branch closure 21/05/2018. Help and support for personal and business customers Totes brach closure 21/05/2018 Help ad support for persoal ad busiess customers Facts are correct as at 09/03/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers of Totes

More information

CSE 158 Lecture 14. Web Mining and Recommender Systems. AdWords

CSE 158 Lecture 14. Web Mining and Recommender Systems. AdWords CSE 58 Lecture 4 Web Mining and Recommender Systems AdWords Advertising. We can t recommend everybody the same thing (even if they all want it!) So far, we have an algorithm that takes budgets into account,

More information

OUTLIERS AND SOME NON-TRADITIONAL MEASURES OF LOCATION IN ANALYSIS OF WAGES

OUTLIERS AND SOME NON-TRADITIONAL MEASURES OF LOCATION IN ANALYSIS OF WAGES Europea Scietific Joural September 0 /SPECIAL/ editio Vol. ISSN: 857 788 (Prit) e - ISSN 857-73 OUTLIERS AND SOME NON-TRADITIONAL MEASURES OF LOCATION IN ANALYSIS OF WAGES Mila Terek, Prof., PhD Matúš

More information

Department of Chemistry University of Texas at Austin

Department of Chemistry University of Texas at Austin Electrochemistry Uit Activity Cocetratio of Electrochemical Cells KEY MINI LECTURE CONCENTRATION ELECTROCHEMICAL CELLS Cells are remarkably complex systems. However, we ca uderstad some key characteristics

More information

Richmond Yorks branch closure 12/06/2018. Help and support for personal and business customers

Richmond Yorks branch closure 12/06/2018. Help and support for personal and business customers Richmod Yorks brach closure 12/06/2018 Help ad support for persoal ad busiess customers Facts are correct as at 09/03/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers

More information

Mortimer branch closure 25/06/2018. Help and support for personal and business customers

Mortimer branch closure 25/06/2018. Help and support for personal and business customers Mortimer brach closure 25/06/2018 Help ad support for persoal ad busiess customers Facts are correct as at 09/03/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers of Mortimer

More information

Help and support for personal and business customers. Rothesay branch closure 26/06/2018

Help and support for personal and business customers. Rothesay branch closure 26/06/2018 Help ad support for persoal ad busiess customers Rothesay brach closure 26/06/2018 Facts are correct as at 14/02/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers of Rothesay

More information

Transshipment LP Model for Minimizing the Utility Cost in a Heat Exchanger Network

Transshipment LP Model for Minimizing the Utility Cost in a Heat Exchanger Network Trasshipet LP Model for Miiizig the Utility ost i a eat Exchager Networ Niolaos V. ahiidis ad Igacio E. Grossa Departet of heical Egieerig aregie Mello Uiversity 1. Proble tateet Give is a process that

More information

= p(1 p)/n If the Rule of 15 and Large Population Rule are satisfied.

= p(1 p)/n If the Rule of 15 and Large Population Rule are satisfied. Estimatig a Populatio Proportio-Example To estimate the proportio p of college studets who disbelieve i evolutio, take a simple radom sample of 1112 college studets, ad fid the sample proportio, say ˆp

More information

Run Length Distribution of Synthetic Double Sampling Chart

Run Length Distribution of Synthetic Double Sampling Chart Iteratioal Joural of Applied Egieerig Research ISSN 97-456 Volume, Number 4 (7) pp 468-47 Research Idia Publicatios http://wwwripublicatiocom Ru egth Distributio of Sythetic Double Samplig Chart You Huay

More information

Problem Set 1 Oligopoly, market shares and concentration indexes

Problem Set 1 Oligopoly, market shares and concentration indexes Advaced Idustrial Ecoomics Sprig 2018 Joha Steek 24 March 2018 Problem Set 1 Oligopoly, market shares ad cocetratio idexes This problem set gives you some experiece i workig with formal oligopoly models.

More information

Penistone branch closure 27/06/2018. Help and support for personal and business customers

Penistone branch closure 27/06/2018. Help and support for personal and business customers Peistoe brach closure 27/06/2018 Help ad support for persoal ad busiess customers Facts are correct as at 09/03/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers of Peistoe

More information

Selection of Input-Output Variables in Data Envelopment Analysis - Indian Commercial Banks

Selection of Input-Output Variables in Data Envelopment Analysis - Indian Commercial Banks Selectio of Iput-Output Variables i Data Evelopmet Aalysis - Idia Commercial Baks Subramayam T Departmet of Statistics, Christ Uiversity, Bagalore ABSTRACT Data Evelopmet aalysis is a oparametric method

More information

CS 111: Program Design I Lecture 18: Breaking News; Exam Review. Robert H. Sloan & Richard Warner University of Illinois at Chicago March 20, 2018

CS 111: Program Design I Lecture 18: Breaking News; Exam Review. Robert H. Sloan & Richard Warner University of Illinois at Chicago March 20, 2018 CS 111: Program Desig I Lecture 18: Breakig News; Exam Review Robert H. Sloa & Richard Warer Uiversity of Illiois at Chicago March 20, 2018 Recall from last time: The Key Legal Rule Restatemet 211(3):

More information

Saffron Walden branch closure 18/06/2018. Help and support for personal and business customers

Saffron Walden branch closure 18/06/2018. Help and support for personal and business customers Saffro Walde brach closure 18/06/2018 Help ad support for persoal ad busiess customers Facts are correct as at 13/02/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers of

More information

Help and support for personal and business customers. Duns branch closure 05/06/2018

Help and support for personal and business customers. Duns branch closure 05/06/2018 Help ad support for persoal ad busiess customers Dus brach closure 05/06/2018 Facts are correct as at 13/02/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers of Dus to

More information

Help and support for personal and business customers. North Berwick branch closure 25/06/2018

Help and support for personal and business customers. North Berwick branch closure 25/06/2018 Help ad support for persoal ad busiess customers North Berwick brach closure 25/06/2018 Facts are correct as at 14/02/2018 Customer ad Commuity Egagemet followig closure aoucemet We wrote to customers

More information

Research on the Cost Management and Forecast for the Projects of Petrochemical Enterprises

Research on the Cost Management and Forecast for the Projects of Petrochemical Enterprises 423 A publicatio of CHEMICAL ENGINEERING TRANSACTIONS VOL. 62, 207 Guest Editors: Fei Sog, Haibo Wag, Fag He Copyright 207, AIDIC Servizi S.r.l. ISBN 978-88-95608-60-0; ISSN 2283-926 The Italia Associatio

More information

Coupling Model of Energy Flow and Material Flow in SKS Lead Smelting

Coupling Model of Energy Flow and Material Flow in SKS Lead Smelting Sed Orders for Reprits to reprits@bethamsciece.ae The Ope Materials Sciece Joural, 2014, 8, 131-135 131 Ope Access Couplig Model of Eergy Flow ad Material Flow i SKS Lead Smeltig Hogcai Wag *, Zhagmig

More information

A Study on Cost Analysis of a Multi Server Fuzzy Queueing- Inventory Model With Waiting and Service Costs

A Study on Cost Analysis of a Multi Server Fuzzy Queueing- Inventory Model With Waiting and Service Costs Iteratioal Joural of Pure ad Applied Mathematics Volume 7 No. 07, 07-5 ISSN: 3-8080 prited versio; ISSN: 34-3395 o-lie versio url: http://www.ijpam.eu ijpam.eu A Study o Cost Aalysis of a Multi Server

More information

Giving away the store: How the zero price constraint results in fewer add-on features

Giving away the store: How the zero price constraint results in fewer add-on features Uiversity of Nebraska at Omaha DigitalCommos@UNO Ecoomics Faculty Publicatios Departmet of Ecoomics 6-11-2016 Givig away the store: How the zero price costrait results i fewer add-o features Be O. Smith

More information

7 Reasons Why Agency Evaluation Programs Commonly Fail

7 Reasons Why Agency Evaluation Programs Commonly Fail a Decideware white paper 7 Reasos Why Agecy Evaluatio Programs Commoly Fail Agecy Relatioship Maagemet supplier performace experts scorecards.deploymet.service decide ware Sa Fracisco Sydey Lodo May large

More information

Comparison of Bootstrap-Estimated and Half Sample- Estimated Kolmogorov-Smirnov Test Statistics

Comparison of Bootstrap-Estimated and Half Sample- Estimated Kolmogorov-Smirnov Test Statistics EUROPEAN ACADEMIC RESEARCH Vol. II, Issue 8/ November 2014 ISSN 2286-4822 www.euacademic.org Impact Factor: 3.1 (UIF) DRJI Value: 5.9 (B+) Compariso of Bootstrap-Estimated ad Half Sample- Estimated Kolmogorov-Smirov

More information

4. Thermodynamic modeling of multicomponent phase equilibria

4. Thermodynamic modeling of multicomponent phase equilibria 49 4. hermodyamic modelig of multicompoet phase equilibria t the early stages of this work, it was ecessary to select a adequate material to be used as a dopat for the metal-carbo eutectic. he first metalcarbo

More information

This guide assists printers to understand the Finsbury Green Star Rating (FGSR) questionnaire by:

This guide assists printers to understand the Finsbury Green Star Rating (FGSR) questionnaire by: A GUIDE TO THE FINSBURY GREEN STAR RATING This guide assists priters to uderstad the Fisbury Gree Star Ratig (FGSR) questioaire by: clarifyig the meaig of questios outliig scorig criteria i greater detail

More information

CSE 158 Lecture 13. Web Mining and Recommender Systems. Algorithms for advertising

CSE 158 Lecture 13. Web Mining and Recommender Systems. Algorithms for advertising CSE 158 Lecture 13 Web Mining and Recommender Systems Algorithms for advertising Classification Predicting which ads people click on might be a classification problem Will I click on this ad Recommendation

More information

Real vs. Nominal GDP: Nominal GDP is calculated using current year prices, while real GDP is calculated using base year prices.

Real vs. Nominal GDP: Nominal GDP is calculated using current year prices, while real GDP is calculated using base year prices. Ecoomics 102 Discussio Hadout Week 6 Sprig 2018 Comparig GDP across coutries: Purchasig Power Parity (PPP) U.S. ad Chia: which coutry has higher GDP i 2017? Comparig GDP across time: Iflatio Adjusted (Real)

More information

Management of Learning Resources with FCFS and SJF Scheduling Methods

Management of Learning Resources with FCFS and SJF Scheduling Methods World Applied Programmig, Vol (), Issue (3), March 201. 97-101 ISSN: 2222-2510 201 WAP joural. www.tijourals.com Maagemet of Learig Resources with FCFS ad SJF Schedulig Methods Mehdi Mohammadi Morshid

More information

IT Service Incidents Prioritization driven by Business Objectives

IT Service Incidents Prioritization driven by Business Objectives IT Service Icidets Prioritizatio drive by Busiess Objectives C. Bartolii, M. Sallé, A. Boulmakoul S. Sabiai, J.M. Brooel HP Laboratories HP Frace 1501 Page Mill Rd. 950 Route Des Colles, Les Templiers

More information

differences between two groups (Will Begin Momentarily) Copyright 2009 BCG Institute for Workforce Development Visit BCGi Online

differences between two groups (Will Begin Momentarily) Copyright 2009 BCG Institute for Workforce Development   Visit BCGi Online /4/009 Itroductio ti to t-tests t t for measurig differeces betwee two groups (Will Begi Mometarily) Brought to you by: www.bcgistitute.org Copyright 009 BCG Istitute for Workforce Developmet www.bcgistitute.org

More information

A Bayesian Predictor of Airline Class Seats Based on Multinomial Event Model

A Bayesian Predictor of Airline Class Seats Based on Multinomial Event Model 2016 IEEE Iteratioal Coferece o Big Data (Big Data) A Bayesia Predictor of Airlie Class Seats Based o Multiomial Evet Model Bigchua Liu Ctrip.com Shaghai, Chia bcliu@ctrip.com Yudog Ta ad Huimi Zhou Ctrip.com

More information

Leveraging Last Time Buy to Optimize Product Lifecycle Costs and Manage Obsolescence

Leveraging Last Time Buy to Optimize Product Lifecycle Costs and Manage Obsolescence Leveragig Last Time Buy to Optimize Product Lifecycle Costs ad Maage Obsolescece Abstract It is commo for certai compoets of electroic products to reach obsolescece log before the whole product does. I

More information

Latest pavement topics in Japan

Latest pavement topics in Japan Latest pavemet topics i Japa Kazuyuki KUBO Leader, Pavemet Team Public Works Research Istitute, Japa Paved Roads i Japa Road ad Pavemet Budget i Japa Drastic chages i the Techical Stadard Before 2001 Maual

More information

Human-centred Adaptation and Task Distribution utilizing Levels of Automation

Human-centred Adaptation and Task Distribution utilizing Levels of Automation Huma-cetred Adaptatio ad Task Distributio utilizig Levels of Automatio Xiaoli Che 1, Michael Bojko 1, Ralph Riedel 1, Kostatios C. Apostolakis 2, Dimitris Zarpalas 2, Petros Daras 2 1 Departmet of Factory

More information

We study a profit-maximizing firm providing a service to price and delay sensitive customers. We are

We study a profit-maximizing firm providing a service to price and delay sensitive customers. We are MANUFACTURING & SERVICE OPERATIONS MANAGEMENT Vol. 12, No. 3, Summer 2010, pp. 511 526 iss 1523-4614 eiss 1526-5498 10 1203 0511 iforms doi 10.1287/msom.1090.0282 2010 INFORMS Exploitig Market Size i Service

More information

Flexibility in order picking, storage and retrieval: rail-guided stacker cranes

Flexibility in order picking, storage and retrieval: rail-guided stacker cranes Flexibility i order pickig, storage ad retrieval: rail-guided stacker craes DAMBACH Lagersysteme has bee buildig rail-guided stacker craes for more tha 40 years, ad the compay s may years of experiece

More information

Regression trees. DAAG Chapter 11

Regression trees. DAAG Chapter 11 Regressio trees DAAG Chapter 11 Learig objectives I this sectio, we will lear about regressio trees. What is a regressio tree? What tpes of problems ca be addressed with regressio trees? How complex a

More information

CS473-Algorithms I. Lecture 1 Introduction to Analysis of Algorithms. Cevdet Aykanat - Bilkent University Computer Engineering Department

CS473-Algorithms I. Lecture 1 Introduction to Analysis of Algorithms. Cevdet Aykanat - Bilkent University Computer Engineering Department CS473-Algorithms I Leture 1 Itrodutio to Aalysis of Algorithms 1 Motivatio Proedure vs. Algorithm What kid of problems are solved by Algorithms? determie/ompare DNA sequees effiietly searh (e.g. Google)

More information

MATH 240: Problem Set 4

MATH 240: Problem Set 4 MATH 240: Problem Set 4 You may either complete this problem set alone or in partners. If you complete it in partners, only one copy needs to be submitted. Show all your work. This problem set is due on:

More information

Analysis of hybrid manufacturing systems based on additive manufacturing technology

Analysis of hybrid manufacturing systems based on additive manufacturing technology Solid Freeform Fabricatio 2017: Proceedigs of the 28th Aual Iteratioal Solid Freeform Fabricatio Symposium A Additive Maufacturig Coferece Reviewed Paper Aalysis of hybrid maufacturig systems based o additive

More information

SLIDES. BY. John Loucks. St. Edward s University

SLIDES. BY. John Loucks. St. Edward s University . SLIDES. BY Joh Loucks St. Edward s Uiversity 2014 Cegage Learig. All Rights Reserved. May ot be scaed, copied or duplicated, or posted to a publicly accessible website, i whole or i part. 1 Chapter 17,

More information

Department of Chemistry University of Texas at Austin

Department of Chemistry University of Texas at Austin Electrochemistry Uit Activity RAQ KEY PART I. Lithium is used i two types of batteries, disposable lithium batteries ad rechargeable lithium io batteries. Lithium io is foud i the Earth s crust boud up

More information

P Fra Cv. Since this is a zero coupon bond, our formula simplifies to that P=500, n=10, C=1000 and we need to find j. 10

P Fra Cv. Since this is a zero coupon bond, our formula simplifies to that P=500, n=10, C=1000 and we need to find j. 10 Chapter 6 Sectio 1. (F11HW) Yacy purchases a 10 year zero coupo bod for 500 ad will be paid 1000 at ed of 10 years. Calculate the aual effective retur received by Yacy. Solutio: Remember the formula, P

More information

On the Effects of Idiotypic Interactions for Recommendation Communities in Artificial Immune Systems

On the Effects of Idiotypic Interactions for Recommendation Communities in Artificial Immune Systems O the Effects of Idiotypic Iteractios for Recommedatio Commuities i Immue s Steve Cayzer Hewlett-Packard Laboratories Filto Road Bristol BS2 6QZ Steve_Cayzer@hp.com Uwe Aickeli Departmet of Computig Uiversity

More information

The Impact of Aggregating Benefit and Cost Criteria in Four MCDA Methods by Evangelos Triantaphyllou and Khalid Baig

The Impact of Aggregating Benefit and Cost Criteria in Four MCDA Methods by Evangelos Triantaphyllou and Khalid Baig 1 Complete Referece for this article: Triataphyllou, E., ad K. Baig, (2004), The Impact of Aggregatig Beefit ad Cost Criteria i Four MCDA Methods, IEEE Trasactios o Egieerig Maagemet, Vol. xx, No. xx,

More information

Procedure Statistical Assessment of Sample Test Results

Procedure Statistical Assessment of Sample Test Results BAM - 3.2: Sectio Pressure Equipmet Pressure Receptacles; Fuel Gas Storage Systems 26 th September 204 Techical Aex Statistical Assessmet Samples (SAS) of the Cocept Additioal Tests (CAT): Procedure Statistical

More information

Welcome to Mechanical Engineering Design

Welcome to Mechanical Engineering Design Welcome to Mechaical Egieerig Desig Desig Phases Product Realizatio Process Egieerig roles Cocurret Egieerig Summary Read chp1 syllabus Are there phases of desig? How do desig decisios chage over time?

More information

ProfileRank: Finding Relevant Content and Influential Users based on Information Diffusion

ProfileRank: Finding Relevant Content and Influential Users based on Information Diffusion ProfileRak: Fidig Relevat Cotet ad Ifluetial Users based o Iformatio Diffusio Arlei Silva, Sara Guimarães, Wager Meira Jr. Uiversidade Federal de Mias Gerais {arlei,sara,meira}@dcc.ufmg.br Mohammed Zaki

More information

REPORT. PIHCsnohomish.org/WorkWell

REPORT. PIHCsnohomish.org/WorkWell 2016 REPORT PIHCsohomish.org/WorkWell Sohomish Couty Employers The Full Cost of Health Ecoomic Burde ad Impacts Report for Sohomish Couty Employers is a first-of-its-kid report producig a ever-before-see

More information

A Framework for the Optimizing of WWW Advertising

A Framework for the Optimizing of WWW Advertising A Framework for the Optimizing of WWW Advertising Charu C. Aggarwal, Joel L. Wolf and Philip S. Yu IBM T.J. Watson Research Center, Yorktown Heights, New York Abstract. This paper discusses a framework

More information

Unit I Electrochemistry

Unit I Electrochemistry Uit I lectrochemistry Itroductio : Sigle lectrode Potetial: lectrode potetial is defied as the potetial developed at the iterface betwee metal ad solutio, whe it is i cotact with solutios of its ios. Or

More information

Section 8.2 Confidence Intervals for One Population Mean When is known and Margin of Error

Section 8.2 Confidence Intervals for One Population Mean When is known and Margin of Error Sectio 8.2 Cofidece Itervals for Oe Populatio Mea Whe is kow ad Margi of Error There is a procedure that we use to costruct a cofidece iterval for oe populatio mea whe is kow. Oe Mea z-iterval Procedure

More information

INBOUND AMPLIFIED: USING ADS TO DRIVE MORE LEADS

INBOUND AMPLIFIED: USING ADS TO DRIVE MORE LEADS INBOUND AMPLIFIED: USING ADS TO DRIVE MORE LEADS We will be starting at 2:00 pm ET. Use the Question Pane in GoToWebinar to Ask Questions! 1 Use the hashtag #InboundLearning on Twitter 2 Question of the

More information

CH302 Unit 8 Day 6 RAQ. Vanden Bout/LaBrake Spring 2013

CH302 Unit 8 Day 6 RAQ. Vanden Bout/LaBrake Spring 2013 CH302 Uit 8 Day 6 RAQ Vade Bout/LaBrake Sprig 2013 Name: UTEID: PART I. Lithium is used i two types of batteries, disposable lithium batteries ad rechargeable lithium io batteries. Lithium io is foud i

More information

Planning and Design of the UK s s Largest Acoustic and Light-Based Fish Deterrent System

Planning and Design of the UK s s Largest Acoustic and Light-Based Fish Deterrent System Plaig ad Desig of the UK s s Largest Acoustic ad Light-Based Fish Deterret System Dr D R Lambert ad Dr J R Nedwell Fish Guidace Systems Swawick,, Southampto, Hampshire, UK Iovative Solutios for Fish Deflectio

More information

USING A MAP OF SHORT TERM STATISTICS IN THE PROCESS OF ORGANIZING BUSINESS SURVEYS

USING A MAP OF SHORT TERM STATISTICS IN THE PROCESS OF ORGANIZING BUSINESS SURVEYS Jacek Kowalewski Cetral Statistical Office of olad Statistical Office i ozań USING A MA OF SHORT TERM STATISTICS IN THE ROCESS OF ORGANIZING BUSINESS SURVEYS Short-term statistics (STS) ivolves collectig,

More information

CHAPTER 15 SAMPLING THEORY. Copyright -The Institute of Chartered Accountants of India

CHAPTER 15 SAMPLING THEORY. Copyright -The Institute of Chartered Accountants of India CHAPTER 15 SAMPLING THEORY SAMPLING THEORY LEARNING OBJECTIVES I this chapter the studet will learu Differet procedure of samplig which will be the best represetative of the populatio; u u The cocept of

More information

Redesigning the Value Chain of SaaS Companies

Redesigning the Value Chain of SaaS Companies Redesigig the Value Chai of SaaS Compaies Abstract Idepedet software vedors (ISV) are rapidly evolvig to adopt Software-as-a-Service (SaaS) as a core product strategy ad scale up to meet market demads.

More information

EXPERIMENTAL INVESTIGATION OF STEAM INJECTION IN GE-F5 GAS TURBINE NOX REDUCTION APPLYING VODOLEY SYSTEM

EXPERIMENTAL INVESTIGATION OF STEAM INJECTION IN GE-F5 GAS TURBINE NOX REDUCTION APPLYING VODOLEY SYSTEM ATC 05 May 8-0, 005 ISTANBUL Secod Iteratioal Coferece o Applied Thermodyamics EXPERIMENTAL INVESTIGATIN F STEAM INJECTIN IN GE-F5 GAS TURBINE NX REUCTIN APPLYING VLEY SYSTEM Mohse Ghazikhai epartmet of

More information

Costing in Vaccine Planning and Programming

Costing in Vaccine Planning and Programming Costig i Vaccie Plaig ad Programmig This work is licesed uder a Creative Commos Attributio-NoCommercial-ShareAlike Licese. Your use of this material costitutes acceptace of that licese ad the coditios

More information

Auction Theory: Bidder s Perspective in an English Auction Environment

Auction Theory: Bidder s Perspective in an English Auction Environment Auctio Theory: Bidder s Perspective i a Eglish Auctio Eviromet J. Aryal, D. Kulasiri, ad G. A. Caraby Abstract This paper provides a overview of auctio theory literature. We preset a geeral review o literature

More information

P Fra Cv. Since this is a zero coupon bond, our formula simplifies to that P=500, n=10, C=1000 and we need to find j. 10

P Fra Cv. Since this is a zero coupon bond, our formula simplifies to that P=500, n=10, C=1000 and we need to find j. 10 Chapter 6 Sectio 1. Haie purchases a 10 year zero coupo bod for 500 ad will be paid 1000 at ed of 10 years. Calculate the aual effective retur received by Haie. Solutio: Remember the formula, P Fra Cv.

More information

Sponsored Search: Theory and Practice

Sponsored Search: Theory and Practice Sponsored Search: Theory and Practice Jan Pedersen Chief Scientist Yahoo! Search and Marketplace Group 1 10 August 2006 Outline Why online advertising is important A brief history of sponsored search An

More information