+ All Categories
Home > Documents > Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Date post: 18-Dec-2015
Category:
Upload: rachel-butler
View: 215 times
Download: 1 times
Share this document with a friend
Popular Tags:
18
Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu
Transcript
Page 1: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Supply Chain Management: Market-Share

Matthew J. OlsonCIS 690 Research ProjectDr. Hsu

Page 2: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Introduction Background: What is TAC-SCM The Base Agent: MinneTAC Why I Studied Market-Share Methodology: Winter’s Method Experiment Results Agent Variations The Second Experiment Results Conclusions

Page 3: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Background The Trading Agent Competition – Supply Chain

Management (TAC-SCM) Each game has 6 autonomous agents buying

computer parts, building computers, and selling them to customers.

A game is 220 days in length. Each agent starts with a $0 balance and can

take loans. Interest on loans are charged. Interest on positive balance is given. A cost is associated with storage. The winner is the one with the biggest bank

balance at the end of the game.

Page 4: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Background (cont.)

Page 5: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Background (cont.)

Page 6: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Background (cont.)

Page 7: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

MinneTAC

Minnesota’s TAC-SCM agent Code was given under the open source

license. After coming in 25th in the 2004

competition, they made some improvements and released this version.

One documented short-coming was market-share.

Page 8: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Why I Studied Market-Share

Market-share was assumed at 1/6. (MinneTAC was one of six agents playing in a game.)

In the real world, market-share isn’t so quaint.

In the game, it isn’t a bad starting estimate, but as time goes on…

MinneKatTAC

Page 9: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Methodology: Winter’s Method

Level: Ei=U(Ei-1+Ti-1)+(1-U)Yi

Trend: Ti=VTi-1+(1-V)(Ei-Ei-1)

U & V derived from experimentation. Y is the observed value (in our case,

(our orders)/(total orders) )

Page 10: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Methodology: Winter’s Method (cont.)

double marketShare=1.0/6.0;double marketShareOld;double level=1.0/6.0;double levelOld;double u=0.995;double v=0.995;double minMarketShare=0.05;double maxMarketShare=0.5;

CustomerOrderList orderList = repository.getCustomerOrders();

for(int i=0;i<catalog.size();i++){ totalOrders+=

repository.getProductsOrdered(i);}

ourOrders=(double)orderList.size();if(totalOrders>0.0) { double orderRatio=ourOrders/totalOrders; marketShareOld=marketShare; levelOld=level; level=u*(levelOld+marketShareOld)+(1-

u)*orderRatio; marketShare=v*marketShareOld+(1-v)*(level-

levelOld); if(marketShare<minMarketShare) marketShare=minMarketShare; if(marketShare>maxMarketShare) marketShare=maxMarketShare;}

Page 11: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Experiment Results 68.2%Game Results

0

5

10

15

20

25

30

35

40

45

50

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

Game

$ A

mo

un

t (i

n m

illio

ns)

Us

Base

Page 12: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Experiment Results 68.2%Average Revenue

22

23

24

25

26

27

28

29

Us Base

$ A

mo

un

t (i

n m

illio

ns)

Page 13: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Agent Variations

Ran 5 versions and the baseline 0 – previously described 1 – averaged market-share over 2 days 2 – averaged market-share over 3 days 3 – averaged market-share over 4 days 4 – halved market-share for 1st 22 days

Page 14: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

The Second Experiment ResultsGame Results

-10

0

10

20

30

40

50

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

Game

$ A

mo

un

t (i

n m

illio

ns) Base

0

1

2

3

4

Page 15: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

The Second Experiment ResultsGame Results

Base0

5

10

15

20

25

30

Game

$ A

mo

un

t (i

n m

illio

ns) Base

0

1

2

3

4

Page 16: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Conclusions

The modified agent is beating the baseline a majority of the time!

This shows that market-share is an important factor.

I would stand behind this agent in a competition!

Page 17: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

References

Berenson, Mark L., et al. Basic Business Statistics: Concepts and Apllications. Tenth Ed. 679.

Collins, John, et al. The Supply Chain Management Game for the 2006 Trading Agent Competition. November 2005. <http://www.sics.se/tac/tac06scmspec_v16.pdf>.

Collins, John, et al. MinnieTAC. University of Minnesota. <http://www.cs.umn.edu/tac/source.html>.

Collins, John, et al. Component-based Design for a Trading Agent. July 2004. <http://www.cs.umn.edu/tac/release/minnetac_design.pdf>.

Page 18: Supply Chain Management: Market-Share Matthew J. Olson CIS 690 Research Project Dr. Hsu.

Questions

?


Recommended