-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathbb599nz4341.ttx
2957 lines (2957 loc) · 221 KB
/
bb599nz4341.ttx
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
title | ESSAYS ON HORIZONTAL MERGERS AND ANTITRUST
blank |
|
|
|
text | A DISSERTATION
| SUBMITTED TO THE GRADUATE SCHOOL OF BUSINESS
| AND THE COMMITTEE ON GRADUATE STUDIES
| OF STANFORD UNIVERSITY
| IN PARTIAL FULFILLMENT OF THE REQUIREMENTS
| FOR THE DEGREE OF
| DOCTOR OF PHILOSOPHY
blank |
|
|
|
text | Przemyslaw Jeziorski
| June 2010
| © 2010 by Przemyslaw Jeziorski. All Rights Reserved.
| Re-distributed by Stanford University under license with the author.
blank |
|
|
text | This work is licensed under a Creative Commons Attribution-
| Noncommercial 3.0 United States License.
| http://creativecommons.org/licenses/by-nc/3.0/us/
blank |
|
|
|
text | This dissertation is online at: http://purl.stanford.edu/bb599nz4341
blank |
|
|
|
meta | ii
text | I certify that I have read this dissertation and that, in my opinion, it is fully adequate
| in scope and quality as a dissertation for the degree of Doctor of Philosophy.
blank |
text | Peter Reiss, Primary Adviser
blank |
|
|
text | I certify that I have read this dissertation and that, in my opinion, it is fully adequate
| in scope and quality as a dissertation for the degree of Doctor of Philosophy.
blank |
text | Ali Yurukoglu
blank |
|
|
text | I certify that I have read this dissertation and that, in my opinion, it is fully adequate
| in scope and quality as a dissertation for the degree of Doctor of Philosophy.
blank |
text | C. Lanier Benkard
blank |
|
|
|
text | Approved for the Stanford University Committee on Graduate Studies.
| Patricia J. Gumport, Vice Provost Graduate Education
blank |
|
|
|
text | This signature page was generated electronically upon submission of this dissertation in
| electronic format. An original signed hard copy of the signature page is on file in
| University Archives.
blank |
|
|
|
meta | iii
title | Abstract
blank |
text | This thesis contributes to understanding the economics of mergers and acquisitions.
| It provides new empirical techniques to study these processes, based on structural,
| game theoretical models. In particular, it makes two main contributions. In Chapter
| 2, I study the issues arising when mergers take place in a two-sided market. In such
| markets, firms face two interrelated demand curves, which complicates the decision
| making process and makes standard merger models inapplicable. In Chapter 3, I
| provide a general framework to identify cost synergies from mergers without using
| cost data. The estimator is based on a dynamic model with endogenous mergers and
| product repositioning. Both chapters contain an abstract model that can be tailored
| to many markets, as well as a specific application to the merger wave in the U.S.
| radio industry.
blank |
|
|
|
meta | iv
title | Acknowledgments
blank |
text | I would like to thank my advisers Lanier Benkard and Peter Reiss for their guidance
| over the years, their patience and their constant feedback that helped me to consider-
| ably improve my work. Moreover, I would like to express my gratitude to numerous
| people I encountered who believed in me and supported me along my path to this
| degree. In particular, this thesis would have been impossible without my adviser
| Tomasz Szapiro at the Warsaw School of Economics. He motivated me and directly
| helped me to make my adventure in the United States possible. My interest in game
| theory and dynamic models was triggered by great conversations with my adviser
| Rabah Amir at the University of Arizona. I would like to thank him for his support
| and help while applying to Stanford GSB. Last but not least, I am grateful to all the
| community at Stanford University – professors, fellow students and casual friends –
| for creating a unique environment for my intellectual and personal development.
blank |
|
|
|
meta | v
title | Contents
blank |
text | Abstract iv
blank |
text | Acknowledgments v
blank |
text | 1 Introduction 1
blank |
text | 2 Mergers in two-sided markets: Case of U.S. radio industry 5
| 2.1 Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
| 2.2 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
| 2.3 Radio as a two-sided market . . . . . . . . . . . . . . . . . . . . . . . 9
| 2.3.1 Industry setup . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
| 2.3.2 Listeners . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
| 2.3.3 Advertisers . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
| 2.3.4 Radio station owners . . . . . . . . . . . . . . . . . . . . . . . 16
| 2.4 Data description . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
| 2.5 Estimation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
| 2.5.1 First stage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
| 2.5.2 Second stage . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
| 2.6 Results . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
| 2.6.1 Listeners’ demand . . . . . . . . . . . . . . . . . . . . . . . . . 23
| 2.6.2 Advertisers’ demand . . . . . . . . . . . . . . . . . . . . . . . 23
| 2.6.3 Supply . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
| 2.7 Counterfactual experiments . . . . . . . . . . . . . . . . . . . . . . . 29
| 2.7.1 Impact of mergers on consumer surplus . . . . . . . . . . . . . 29
blank |
meta | vi
text | 2.7.2 Effects of product variety and market power . . . . . . . . . . 31
| 2.8 Robustness analysis . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
| 2.9 Conclusion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
blank |
text | 3 Estimation of cost synergies from mergers without cost data: Ap-
| plication to U.S. radio 35
| 3.1 Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
| 3.2 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
| 3.3 Merger and repositioning framework . . . . . . . . . . . . . . . . . . 38
| 3.3.1 Industry basics . . . . . . . . . . . . . . . . . . . . . . . . . . 38
| 3.3.2 Players’ actions . . . . . . . . . . . . . . . . . . . . . . . . . . 39
| 3.3.3 Payoffs and equilibrium . . . . . . . . . . . . . . . . . . . . . 41
| 3.4 Estimation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42
| 3.4.1 Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42
| 3.4.2 Policy estimation . . . . . . . . . . . . . . . . . . . . . . . . . 43
| 3.4.3 Minimum distance estimator . . . . . . . . . . . . . . . . . . . 46
| 3.5 Application . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
| 3.5.1 Industry and data description . . . . . . . . . . . . . . . . . . 48
| 3.5.2 Static profits . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
| 3.5.3 Estimation details . . . . . . . . . . . . . . . . . . . . . . . . . 51
| 3.5.4 Results . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
| 3.6 Conclusions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
blank |
text | A Additional material to Chapter 2 57
| A.1 Advertising demand: Micro foundations . . . . . . . . . . . . . . . . . 57
| A.2 Numerical considerations . . . . . . . . . . . . . . . . . . . . . . . . . 59
blank |
text | B Additional material to Chapter 3 61
| B.1 Estimation without acquisition prices . . . . . . . . . . . . . . . . . . 61
| B.2 Radio acquisition and format switching algorithms . . . . . . . . . . . 62
| B.3 Policy function covariates . . . . . . . . . . . . . . . . . . . . . . . . 63
| B.4 First stage estimates: Dynamic model . . . . . . . . . . . . . . . . . . 65
blank |
|
meta | vii
text | Bibliography 68
blank |
|
|
|
meta | viii
title | List of Tables
blank |
text | 2.1 Simple example of advertising weights . . . . . . . . . . . . . . . . . . 15
| 2.2 Panel data descriptive statistics . . . . . . . . . . . . . . . . . . . . . 18
| 2.3 Estimates of mean and random effects of demand for radio program-
| ming. Stars indicate parameter significance when testing with 0.1, 0.05
| and 0.01 test sizes. . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24
| 2.4 Interaction terms between listeners’ demographics and taste for radio
| programming. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
| 2.5 Product closeness matrices for chosen markets . . . . . . . . . . . . . 26
| 2.6 Slope of the inverse demand for ads θ2A , by market size . . . . . . . . 27
| 2.7 Estimated marginal cost (in dollars per minute of broadcasted advertis-
| ing) and profit margins (before subtracting the fixed cost) for a chosen
| set of markets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
| 2.8 Counterfactuals for all markets . . . . . . . . . . . . . . . . . . . . . 29
| 2.9 Counterfactuals for small markets (less than 500k people) . . . . . . . 30
| 2.10 Counterfactuals for large markets (more than 2,000k people) . . . . . 30
| 2.11 Slope of the inverse demand for ads θ2A , by market size . . . . . . . . 33
| 2.12 Robustness of counterfactuals . . . . . . . . . . . . . . . . . . . . . . 33
blank |
text | 3.1 Change in the local ownership caps introduced by the 1996 Telecom Act. 49
| 3.2 Savings when two stations are owned by the same firm vs. operating
| separately . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
| 3.3 Total cost savings created by mergers after 1996, compared to demand
| effects from Jeziorski (2010) . . . . . . . . . . . . . . . . . . . . . . . 55
| 3.4 Format switching cost for chosen markets . . . . . . . . . . . . . . . . 55
blank |
meta | ix
text | B.1 Covariates for the format switching strategy multinomial logic regression. 63
| B.2 Covariates for the purchase strategy logic regression. . . . . . . . . . 64
| B.3 Station purchase policy estimates - buyer/seller dummies . . . . . . . 65
| B.4 Station purchase policy estimates - other variables . . . . . . . . . . . 65
| B.5 Format switching policy estimates - format dynamics . . . . . . . . . 66
| B.6 Format switching policy estimates - current demographics . . . . . . . 66
| B.7 Format switching policy estimates - demographic dynamics . . . . . . 67
blank |
|
|
|
meta | x
title | List of Figures
blank |
text | 3.1 Dynamics of station acquisition and format switching . . . . . . . . . 50
blank |
|
|
|
meta | xi
title | Chapter 1
blank |
title | Introduction
blank |
text | A horizontal merger occurs when two or more competing companies combine to jointly
| operate. Both the European Commission (2004) and the U.S. Department of Justice
| (1997) recognize that such mergers may lessen competition and thereby harm con-
| sumers. Therefore, in order to prevent anti-competitive conduct, both bodies employ
| a set of analytical tools that predict and analyze the consequences of mergers. The
| dominant paradigm from the 1950s and through the 1970s was the structure-conduct-
| performance approach (see Bain (1968)). It assumes that market power is directly
| related to market concentration, and proposes using concentration indexes (e.g. the
| Herfindahl-Hirschman Index) for merger enforcement. This approach however, does
| not explicitly explain the conduct of firms and ignores many important issues, for
| example product differentiation, and heterogeneity of consumers or cost synergies.
| In contrast, modern industrial organization has developed new techniques, based on
| game theory, that endogenize the behavior of companies and allow for more detailed
| and robust evaluation of mergers.
| Current analysis of horizontal mergers in markets with differentiated products is
| based on a static supply and demand approach (e.g. Nevo (2000)). It is usually
| done in two steps. In the first step, one estimates a flexible demand system (e.g.
| Deaton and Muellbauer (1980), Ackerberg and Rysman (2005), Berry (1994), Berry,
| Levinsohn, and Pakes (1995)) and supply system. The demand system is a function of
| product characteristics, prices and heterogeneous consumer preferences. The supply
blank |
|
meta | 1
| CHAPTER 1. INTRODUCTION 2
blank |
|
|
text | system is determined by the equilibrium behavior of firms that maximize their profits.
| In the second step, one exogenously imposes a hypothetical merger and solves for the
| post-merger equilibrium using the estimates from the first step. The new equilibrium
| provides predictions about post-merger prices and quantities that can be used to
| identify the short-run impact of the merger on consumer and producer surplus. This
| thesis provides two extensions to this framework. First, it develops a new supply and
| demand system that encompasses the merger analysis of two-sided markets. Second,
| it proposes a dynamic framework in which mergers and product repositioning are
| endogenous. It allows for long-run predictions, including evaluation of possible fixed
| cost synergies of mergers. These methods are applied to analyze the 1996-2006 merger
| wave in the U.S. radio industry.
| In the chapter 2 of this thesis, I focus on how mergers affect two-sided markets. In a
| two-sided market, firms provide services to two types of consumers and facilitate their
| interaction via a platform. This creates cross-consumer externalities; thus, the profits
| of a firm operating a platform depend on sales to both types of consumers. Examples
| of such markets include the following: radio, in which stations sell ads and provide
| programming to listeners; credit cards, in which firms connect merchants and credit
| card holders; operating systems, in which revenue comes from hardware buyers and
| application developers. Antitrust analysis in these markets is complicated and it must
| take into account the market specific economic features (Armstrong (2006), Rochet
| and Tirole (2006), Evans (2002)). In particular, in the case of a merger, a firm has
| incentives to exercise market power on both sides of the market. These incentives are
| often conflicting. For example, in the radio market, stations sell advertising knowing
| it negatively impacts their listenership. On the one hand, a merged firm might sell
| more advertising in order to exercise market power on listeners. On the other hand, it
| might sell less advertising in order to exercise market power on advertisers. Chapter 2
| investigates this conflict by estimating a model of supply and demand for advertising
| and radio programming. Using this model, it performs counterfactual experiments
| that predict the post-merger advertising quantity supplied and the new division of
| surplus between listeners and advertisers. I find that mergers decrease the amount of
| advertising supplied, thereby increasing listener welfare by 1%. However, at the same
meta | CHAPTER 1. INTRODUCTION 3
blank |
|
|
text | time the decrease in ad supply raises prices and lowers advertiser welfare by $300m
| per year.
| A static analysis does not recognize that firms may adjust their product portfolio
| after a merger. In theory, mergers could increase or decrease product variety. On
| the one hand, they can increase the variety because a merged firm wants to avoid
| cannibalization. On the other hand, the firm might crowd products together to
| prevent entry. In the former case, if consumers prefer more variety, it is possible that
| repositioning could alleviate the negative effects of the merger (Berry and Waldfogel
| (2001), Sweeting (2008)). Chapter 2 provides a method to disaggregate the total
| impact of the merger on consumer surplus into changes in product variety and in
| supplied quantity. The same method can be used to predict whether extra variety
| could alleviate negative market power effects for a hypothetical merger. In the case
| of radio, extra variety alone leads to a 1.3% increase in listener welfare and decreases
| advertiser welfare by $147m per year. I find that product ownership consolidation
| and repositioning are followed by advertising quantity readjustments. I estimate that
| this effect alone leads to a 0.3% decrease in listener welfare (with the variety effect it
| sums to a 1% increase) and an additional $153m decrease in advertiser welfare (with
| the variety effect it totals $300m). While extra variety mitigates the negative effects
| of mergers on listeners, it increases the negative impact on advertisers.
| Chapter 3 deals with a dynamic merger analysis. The current empirical litera-
| ture on mergers and repositioning assumes that the market structure is exogenous
| (Nevo (2000), Pinkse and Slade (2004), Ivaldi and Verboven (2005)). This approach
| does not take into account dynamic processes like post-merger repositioning, follow-
| up mergers, and fixed cost synergies, that could potentially lower prices and provide
| consumers with other non-price benefits. Moreover, the assumption that mergers are
| exogenous may create a selection bias that results in overestimation of cost synergies
| (for example the estimator might pick up other unobserved components correlated
| with the propensity to merge). This thesis provides a new, dynamic framework in
| which decisions to merge and to reposition products are endogenous. Such an ap-
| proach provides consistent estimates of the long-run effects of mergers. In addition, it
| allows for the estimation of cost synergies without any data on cost. The framework
meta | CHAPTER 1. INTRODUCTION 4
blank |
|
|
text | is straightforward, easy to implement, and computationally tractable. Application to
| radio reveals that the 1996-2006 merger wave provided $2.5b per year of cost syn-
| ergies, which constitutes about 10% of total industry revenue. The scale of those
| efficiencies is a an order of magnitude higher than loss in surplus for advertisers.
title | Chapter 2
blank |
title | Mergers in two-sided markets:
| Case of U.S. radio industry
blank |
title | 2.1 Preface
text | This chapter studies the consequences of mergers in two-sided markets by estimating a
| structural supply and demand model and performing counterfactual experiments. The
| analysis is performed on the example of a merger wave in U.S. radio; however, it is applicable
| to other two-sided markets like credit cards, trading platforms or computer games. There
| are two main contributions from this chapter. First, I identify the conflicting incentives of
| merged firms to exercise market power on both sides of the market (listeners and advertisers
| in the case of radio). Second, I disaggregate the effect of mergers on consumers into changes
| in product variety and changes in supplied ad quantity.
| The model is estimated using data on 13,000 radio stations from 1996 to 2006. I find that
| firms have moderate market power over listeners in all markets, extensive market power over
| advertisers in small markets and no market power over advertisers in large markets. Coun-
| terfactuals reveal that extra product variety created by post-merger repositioning increased
| listeners’ welfare by 1.3% and decreased advertisers’ welfare by about $160m per-year. How-
| ever, subsequent changes in supplied ad quantity decreased listener welfare by 0.4% (for a
| total impact of +0.9%) and advertiser welfare by an additional $140m (for a total impact
| of -$300m).
blank |
|
meta | 5
| CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 6
blank |
|
|
title | 2.2 Introduction
text | Between 1996 and 2006, the U.S. radio industry experienced an unprecedented merger
| wave due to the 1996 Telecommucation Act, which raised ownership caps in local
| markets and abolished cross-market ownership restrictions. At the height of merger
| activity, about 30% of stations changed ownership each year and about 20% changed
| the format of broadcasted programming. In this paper, I use this merger wave to
| study the consequences of consolidation in two-sided markets. I make two main
| contributions. First, I identify conflicting incentives for stations to exercise market
| power on both sides of the market (in the case of radio, the two sides are advertisers
| and listeners). In particular, I separate the impact of consolidation on listener and
| advertiser surplus. Second, I decompose this impact into effects of changes on product
| variety and market power. As a result, I ask whether extra variety can mitigate the
| negative effects of a decrease in competition. Similar issues arise in other two-sided
| markets such as credit cards, newspapers or computer hardware. The framework
| proposed in this paper can be easily adjusted to analyze any of these industries.
| In two-sided markets, firms face two interrelated demand curves from two distinct
| types of consumers. These demands give merging firms conflicting incentives because
| exercising market power in one market lowers profits in the other market. In the case
| of radio, a company provides free programming to listeners but draws revenue from
| selling advertising that is priced on a per-listener basis. In the listener market, a
| merged firm would like to increase post-merger advertising because it captures some
| switching listeners. This advertising decreases the welfare of listeners and increases
| the welfare of advertisers. However, from the perspective of the advertising market,
| the merged firm would like to supply less advertising, which has the exact opposite
| impact on listener and advertiser welfare. The firm’s ultimate decision, which deter-
| mines the impact of consolidation on the welfare of both consumer groups, depends
| on the relative demand elasticities in both markets.
| In this paper, I separately estimate elasticities for both consumer groups using a
| structural model of the demand and supply of radio programming and advertising.
| Using those estimates, I perform counterfactual policy experiments that quantify the
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 7
blank |
|
|
text | impact of consolidation on listener and advertiser surplus. I find that market power
| on the listener side is similar across geographical markets. In contrast, the amount
| of market power on the advertiser side depends on market population. In particular,
| firms have a considerable control over advertising price in smaller markets; however,
| they are price takers in larger markets. Consequently, mergers result in firms lowering
| advertising quantity in small markets (less than 500 thousand people) by about 13%,
| which leads to a 6% per-listener increase in ad prices. Mergers increase listener
| surplus by 2.5% but at the same time decrease advertiser surplus by $235m per
| year. Conversely, in large markets (more than 2 million people) mergers lead to
| a 5.5% increase in total advertising minutes while per-listener price stays constant.
| This results in a 0.3% decrease in listener welfare as well as a slight decrease in
| advertiser welfare ($0.1m per year). The aggregate national impact of the merger
| wave amounted to a listener welfare gain of 1% and a $300m per year advertiser
| welfare loss. I conclude that listeners benefited and advertisers were disadvantaged
| by the 1996 Telecom Act.
| My work is related to several theoretical papers studying complexity of pricing
| strategies in two-sided markets. The closest studies related to this paper are: Arm-
| strong (2006), Rochet and Tirole (2006), Evans (2002) and Dukes (2004). The general
| conclusion in this literature is that using a standard supply and demand framework
| of single-sided markets might be not sufficient to capture the economics of two-sided
| markets. Additionally, there have been several empirical studies on this topic. For
| example Kaiser and Wright (2006), Argentesi and Filistrucchi (2007) and Chandra
| and Collard-Wexler (2009) develop empirical models that recognize the possibility of
| market power in both sides of the market. They use a form of the Hotelling model pro-
| posed by Armstrong (2006) to deal with product heterogeneity. I build on their work,
| incorporating recent advances in the literature on demand with differentiated prod-
| ucts. This allows me to incorporate richer consumer heterogeneity and substitution
| patterns (e.g. Berry, Levinsohn, and Pakes (1995), and Nevo (2000)) that are neces-
| sary to capture complicated consumer preferences for radio programing. Moreover, I
| supplement reduced form results on market power with out-of-sample counterfactuals
| that explicitly predict changes in supplied ad quantity and consumer welfare.
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 8
blank |
|
|
text | The second contribution of this paper is the decomposition of the total impact of
| mergers on consumer surplus into changes in product variety and effects of exercising
| extra market power from joint ownership. This exercise is motivated by the fact
| that in most cases consumers have preference for variety, so it is possible that extra
| variety created by mergers might mitigate the negative effects of extra market power.
| In order to verify the above claim, I quantify consumers’ value for extra variety and
| compare it to the loss in surplus coming from the extra market power. This approach
| relates to Kim, Allenby, and Rossi (2002), who compute the compensating variation
| for the changes of variety in tastes of yogurt and Brynjolfsson, Hu, and Smith (2003)
| who do the same for the variety of books offered in on-line bookstores. These papers
| assume away the fact that changes in variety will be followed by readjustments in
| equilibrium prices. In this paper, taking their analysis one step forward, I incorporate
| such strategic responses by performing counterfactual experiments.
| Berry and Waldfogel (2001) and Sweeting (2008) document that the post-1996
| merger wave resulted in an increase in product variety. I investigate their claim using
| a structural utility model and conclude that extra variety alone leads to a $1.3%
| increase in listener welfare. However, because product repositioning softened com-
| petition in the advertising market and caused some stations to switch to a “Dark“
| format 1 , advertiser welfare decreased by $147m per year. Additionally, I find that
| product ownership consolidation and repositioning are followed by advertising quan-
| tity readjustments. I estimate, that effect alone leads to a 0.3% decrease in listener
| welfare (with the variety effect it totals to the 1% increase) and an additional $153m
| decrease in advertiser welfare (with the variety effect it totals $300m). While ex-
| tra variety mitigates the negative effects of mergers on listeners, it strengthens the
| negative impact on advertisers.
| This paper is organized as follows. Section 2 outlines the questions investigated
| in the paper in a formal way and describes the structural model of the industry.
| Section 3 contains the description of the data. Estimation techniques used to identify
| the parameters of the model are described in Section 4. Results of the structural
meta | 1
text | When in “dark” format, the station holds the frequency so that other stations cannot use it.
| “Dark” stations typically do not broadcast or broadcast very little non-commercial programming.
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 9
blank |
|
|
text | estimation are presented in Section 5. Section 6 describes the results of counterfactual
| experiments. Robustness checks of different modeling assumptions are contained in
| Section 7. Section 8 provides the conclusion.
blank |
|
title | 2.3 Radio as a two-sided market
text | The radio industry is an example of a two-sided market (other examples include
| advertising platforms, credit cards or video games). Such markets are usually char-
| acterized by the existence of three types of agents: two types of consumers and
| a platform provider. What distinguishes this setup from a standard differentiated
| product oligopoly is that the platform provider is unable to set prices for each type of
| consumer separately. Instead, the demand curves are interrelated through a feedback
| loop in such a way that quantity sold to one consumer determines the market clearing
| price for the other consumer. In this subsection I argue that this feedback makes it
| complicated to determine whether the supplied quantities are strategic substitutes
| or complements (as defined in Bulow, Geanakoplos, and Klemperer (1985)). This
| creates important trade-offs in the case of a merger and affects the division of surplus
| between both types of consumers. The remainder of this subsection discusses this
| mechanism in detail using the example of radio; however, the discussion applies to
| the majority of other two-sided markets.
| In the case of radio there are three types of agents: radio stations, listeners,
| and advertisers. Radio stations provide free programming for listeners and draw
| revenue from selling advertising slots. First, consider the demand curve for radio
| programming. The listener market share of the radio station j is given by
blank |
text | rj = rj (q|s, d, θL ) (2.1)
blank |
text | where q is the vector of advertising quantities, s are observable and unobservable
| characteristics of all active stations, d are market covariates and θL are parameters
| of the listener demand. Since radio programming is free, there is no explicit price in
| this equation. However, because listeners have disutility for advertising, its effect is
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 10
blank |
|
text | ∂rj
| similar to price, i.e. ∂qj
| < 0.
| The market clearing price of an advertising slot in station j depends on the amount
| of advertising supplied and the number of listeners to station j. Therefore, the inverse
| demand curve for advertising slots is
blank |
text | pj = pj (q, rj (q)|s, d, θA ) (2.2)
blank |
text | where θA are parameters. Note that the advertising quantity affects the advertising
| price in two ways: directly through the first argument and indirectly through the
| listener demand feedback loop (the second argument).
| Suppose for now that each owner owns a single station and there is no marginal
| cost (I relax these assumptions later). In equilibrium, each radio station chooses their
| optimal ad quantity, keeping the quantities of the other stations fixed, i.e.
blank |
text | max pj (q, rj (q)|q−j )qj (2.3)
| qj
blank |
|
text | In contrast to a differentiated products oligopoly, the firm has just one control (ad
| quantity) that determines the equilibrium point on both demand curves simultane-
| ously. The first order conditions for profit maximization are given by
blank |
text | ∂pj ∂pj ∂rj
| qj + qj + pj = 0
| ∂qj ∂rj ∂qj
blank |
text | The important fact is that this condition shares features with both the Cournot and
| Bertrand models. On the one hand, the first term represents the direct effect of
| quantity on price, and it is reminiscent of the standard quantity setting equilibrium
| (Cournot). On the other hard, the second component represents the listener feedback
| loop and is reminiscent of the price setting model (Bertrand), because ad quantities
| function like prices in the demand for programming.
| In order to determine the impact of a merger on the equilibrium ad quantities
| supplied we need to know if they are strategic complements or substitutes. The
| duality described in the previous paragraph make it ambiguous. This is because
| in the Cournot model quantities are strategic substitutes and in the differentiated
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 11
blank |
|
|
text | product Bertrand model prices are strategic complements. Without knowing the
| relative strengths of the direct effects and the feedback loop, we cannot conclude
| whether a merger leads to an increase or decrease in ad quantity on the margin.
| Moreover, in the borderline case in which the effects cancel each other, a merger does
| not effect quantity at all; in this case, even though companies have market power
| over both consumers, they are unable to exercise it. Measuring these effects is critical
| for predicting the split of surplus between advertisers and listeners. When the direct
| effect is stronger, mergers lead to contraction in the ad quantity supplied and higher
| prices. This will benefit listeners but hurt advertisers. However, if the feedback loop
| is stronger than the direct effect then merger leads to more advertising and lower
| prices, benefiting advertisers and hurting listeners.
| Because the theory does not give a clear prediction about the split of surplus, I
| investigate this question empirically using a structural model. In the remainder of
| this section I put more structure on equations (2.1), (2.2) and (2.3), enabling separate
| identification of both sets of demand elasticities. I discover the relative strength of
| the direct and feedback effects and perform counterfactuals that quantify the extent
| of surplus reallocation.
blank |
|
title | 2.3.1 Industry setup
text | During each period t, the industry consists of M geographical markets that are char-
| acterized by a set of demographic covariates d ∈ Dm . Each market m can have up to
| Jm active radio stations and Km active owners. Each radio station is characterized by
| one of F possible programming formats. Station formats include the so-called “dark”
| format when a station is not operational The set of all station/format configurations
| m
| is given by FJ . Ownership structure is defined as a Km -element partition of sta-
| m
| tion/format configuration smt ∈ FJ . In an abuse of notation, I will consider smt
| to be a station/format configuration for market m at time t, as well as an owner-
| ship partition. Each member of the ownership partition (denoted as sk ) specifies the
| portfolio of stations owned by firm k.
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 12
blank |
|
|
text | The quality of the programming of radio station j is fully characterized by a one-
| dimensional quality measure ξj ∈ Ξ ⊂ R. The state of the industry at time time t
| in market m is therefore fully characterized by: a station/format configuration and
| ownership structure stm , vector of station quality measures ξ tm and market covariates
| dtm . In the next subsections I present a detailed model of listener demand, advertiser
| demand, and supply side. Throughout the description I take the triple (stm , ξ tm , dtm )
| as given and frequently omit market or time subscripts to simplify the notation.
blank |
|
title | 2.3.2 Listeners
text | This subsection describes the details of the demand for listenership introduced in
| equation (2.1). The model will be a variation on the random coefficient discrete
| choice setup proposed by Berry, Levinsohn, and Pakes (1995).
| I assume that each listener chooses only one radio station to listen to at a particular
| moment. Suppose that s is a set of active stations in the current market at a particular
| time. For any radio station j ∈ s, I define a vector ιj = (0, . . . , 1, . . . , 0) where 1 is
| placed in a position that indicates the format of station j.
| The utility of listener i listening to station j ∈ s is given by
blank |
text | L L
| uij = θ1i ιj − θ2i qj + θ3L FMj + ξj + ji (2.4)
blank |
text | L
| where θ2i is the individual listener’s demand sensitivity to adverting, qj the amount
| of advertising, ξj the unobserved station quality, ji an unobserved preference shock
| L
| (distributed type-1 extreme value), and finally θ1i is a vector of the individual listener’s
| random effects representing preferences for formats.
| I assume that the random coefficients can be decomposed as
blank |
text | L
| θ1i = θ1L + ΠDi + ν1i , Di ∼ Fm (Di |d), ν1i ∼ N (0, Σ1 )
blank |
text | and
| L
| θ2i = θ2L + ν2i , ν2i ∼ N (0, Σ2 )
blank |
text | where Σ1 is a diagonal matrix, Fm (Di |d) is an empirical distribution of demographic
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 13
blank |
|
|
text | characteristics, νi is unobserved taste shock, and Π is the matrix representing the
| correlation between demographic characteristics and format preferences. I assume
| that draws for νi are uncorrelated across time and markets.
| The random effects model allows for fairly flexible substitution patterns. For
| example, if a particular rock station increases its level of advertising, the model
| allows for consumers to switch proportionally to other rock stations depending on
| demographics.
| Following Berry, Levinsohn, and Pakes (1995), I can decompose the utility into a
| part that does not vary with consumer characteristics
blank |
text | δj = δ(qj |ιj , ξj , θL ) = θ1L ιi − θ2L qj + θ3L FMj + ξj
blank |
text | an interaction part
blank |
text | µji = µ(ιj , qj , ΠDi , νi ) = (ΠDi + ν1i )ιj + ν2i qj
blank |
text | and error term ji .
| Given this specification, and the fact that ji is distributed as an extreme value,
| one can derive the expected station rating conditional on a vector of advertising levels
| q, market structure s, a vector of unobserved station characteristics ξ, and market
| demographic characteristics d,
| Z Z
| L exp[δj + µji ]
| rj (q|s, ξ, d, θ ) = P dF (νi )dFm (Di |d)
| j 0 ∈s exp[δj 0 + µj 0 i ]
blank |
|
title | 2.3.3 Advertisers
text | In this subsection I present the details of the demand for advertising introduced in
| equation (2.2). The model captures several important features specific to the radio
| industry. In particular, the pricing is done on a per-listener basis, so that the price
| for a 60sec slot of advertising is a product of cost-per-point (CPP) and station rating
| (market share in percents). Moreover, radio stations have a direct market power over
| advertisers, so that CPP is a decreasing function of the ad quantities offered by a
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 14
blank |
|
|
text | station and its competitors. The simplest model that captures these features and is
| a good approximation of the industry is a linear inverse demand for advertising, such
| as !
| X
| pj = θ1A rj 1 − θ2A ωfmf 0 qf 0 (2.5)
| f 0 ∈F
blank |
text | where f is a format of station j, θ1A is a scaling factor for value of advertising, θ2A is
| a market power indicator and ωf f 0 ∈ Ω are weights indicating competition closeness,
| between formats f and f 0 .
| The weights ω are a key factor determining competition between formats and thus
| market power. They reflect the fact that some formats are further and others are closer
| substitutes for advertisers because of differences in the demographic composition of
| their listeners. In principle, one could proceed by estimating these weights from
| the data. However, here it is not feasible to do that because the available data
| do not contain radio station level advertising prices. Instead, I make additional
| assumptions that will enable me to compute the weights using publicly available data.
| The reminder of this subsection discusses the formula for the weights and provides
| an example supporting this intuition. The formal micro-model is given in Appendix
| A.1.
| Let there be A types of advertisers. Each type a ∈ A targets a certain demographic
| group(s) a. I.e. advertiser of type a gets positive utility only if a listener of type a
| hears an ad. Denote rf |a to be the probability that a listener of type a chooses format
| f and ra|f to be the probability that a random listener of format f is of type a.
| Advertisers take these numbers, along with station ratings rj , as given and decide on
| which station to advertise. This assumption is is motivated by the fact that about
| 75% is purchased by small local firms. Such firms’ advertising decisions are unlikely
| to influence prices and station ratings in the short run.
| This decision problem results in an inverse demand for advertising with weights
| ωjj 0 , that are given by
blank |
text | 1 X
| ωf f 0 = P 2
| ra|f ra|f rf 0 |a (2.6)
| a∈A ra|f a∈A
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 15
blank |
|
|
text | The formal justification and derivation of this equation is given in Appendix A.1. The
| intuition behind it is that the total impact on the per-listener price of an ad in format
| f is a weighted average of impacts on the per-listener value of an ad for different types
| of advertisers. The weighting is done by the advertisers’ arrival rates, which are equal
| to the listeners’ arrival rates ra|f . For each advertiser of type a the change of value
| of an ad in format f , in response to a change of total quantity supplied in format f 0 ,
| is affected by two things: it is proportional to the probability of correct targeting in
| format f , given by ra|f , because advertisers are expected utility maximizers; and it
| is proportional to the share of advertising purchased by this advertiser in format f 0 ,
| given by rf 0 |a . Assembling these pieces together and normalizing the weights to sum
| to 1 gives equation (2.6).
| To illustrate how these weights work in practice, consider the following example.
| Suppose that there are only two possible formats of programming: Talk and Hits, and
| two types of consumers: Teens and Adults. Teens like mostly Hits format and Adults
| like Talk format. However, Adults like Hits more than Teens like Talk. Hypothetical
| numerical values of rf |a and ra|f are given in Table 2.1.
blank |
text | rf |a ra|f Ω
| Talk Hits Teens Adults Talk Hits
| Teens 1/5 4/5 Talk 1/4 3/4 Talk 0.56 0.44
| Adults 3/5 2/5 Hits 2/3 1/3 Hits 0.28 0.72
| Table 2.1: Simple example of advertising weights
blank |
text | In Table 2.1, the impact of Hits on the price of Talk is greater than the impact of
| Talk on the price of Hits. This is due to the fact that the quantity supplied in the Hits
| format affects Adult-targeting advertisers (who drive the price of the Talk format)
| to a much greater extent than ad quantity in Talk affects Teen-targeting advertisers
| (who drive the price of the Hits format). Moreover, because the weights sum up to
| 1, it must be that the own effect of Talk is weaker than that of Hits. This is exactly
| the essence of the mechanism behind Equation (2.6). More examples from the data
| with an extensive discussion are given in Section 2.6.
| In the next section I will combine demand for programming and advertising to
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 16
blank |
|
|
text | compose the profits of the radio station owners.
blank |
|
title | 2.3.4 Radio station owners
text | In this subsection I will describe a profit maximizing problem for the radio station
| owners. It will be a version of equation (2.3) that allows for non-zero cost in selling
| advertising and common radio station ownership. Given the advertising quantity
| choices of competing owners q−k , the profit of radio station owner k is given by
| X
| π̄k (qk |q−k , ξ, θ) = max rj (q|ξ, θL )pj qj − MCj (qj ) =
| {qj ;j∈sk }
| j∈sk
blank |
text | X X
| ! (2.7)
| = θ1A max L
| qj rj (q|ξ, θ ) 1 − θ2A ωfmf 0 qf 0 A C
| + Cj (qj |θ , θ )
| {qj ;j∈sk }
| j∈sk f 0 ∈F
blank |
|
text | where Cj (qj ) is the total cost of selling advertising. I assume constant marginal cost
| and allow for a firm level of unobserved cost heterogeneity ηj , i.e. Cj (qj |θA , θC ) =
| θ1A [θC + ηj ]qj .
| I assume that the markets are in a Cournot Nash Equilibrium. The first order
| conditions for profit optimization become
blank |
text | X ∂rj 0
| rj pj + qj 0 A m
| pj 0 − rj 0 θ2 ωjj 0 − θC − ηj = 0 ∀k and j ∈ sk (2.8)
| j 0 ∈s
| ∂qj
| k
blank |
|
|
text | Additionally, I assume that station unobserved quality is exogenous but serially cor-
| related. It evolves according an AR(1) process such that
blank |
text | ξjt = ρξjt−1 + ζjt (2.9)
blank |
text | where ζjt is an exogenous innovation to station quality.
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 17
blank |
|
|
title | 2.4 Data description
text | I have constructed a panel of data on radio stations and radio station ownership
| merging data from two sources: BIA Financial Network Inc. and the SQAD Media
| Market Guide.
| BIAfn provided me data on: radio station ownership, revenues, market shares and
| formats. The data are a 1996-2006 panel covering each radio station in the market
| in 2006. The data are incomplete in the sense that I do not observe all the stations
| that exited the market between 1996 and 2006. According to Sweeting (2007) there
| were only 50 stations that exited during this period, mostly due to violations of FCC
| regulations. Because this number is small relative to the 11,000 stations in the sample,
| this omission is unlikely to significantly influence the results.
| The BIAfn data are supplemented with data on aggregate advertising prices. Un-
| fortunately, price data at the station level are not available. SQAD instead provides
| estimates of market prices that are obtained using proprietary formulas. According
| to anecdotal evidence, those estimates are widely recognized as the industry standard
| and are the best available data on market prices. Radio market prices are reported
| as a Cost per Rating Point (CPP). CPP is the cost of advertising per 1 percent of
| listenership. SQAD provides CPP broken down into daytime and demographic cat-
| egories. We will estimate station level prices from SQAD CPPs using radio station
| ratings that are broken down by time of day and demographics.
| An observation in my data is a radio station operating in a specific half-year and
| in a specific market. BIAfn and SQAD use Arbitron market definitions. An Arbitron
| market is in most cases a county or a metropolitan area. According to the surveys
| conducted by CRA International (2007) for the Canadian market (which is similar to
| the US market): “The majority of radio advertisers are local. They are only interested
| in advertising in their local area since most of their customers and potential buyers
| live in or very near their city.” In our analysis, I assume no interdependence between
| markets. To further assure that there is no overlap between markets, I use only the
| 88 market sub-selection that was developed in Sweeting (2007). Table 2.7 presents a
| list of the 88 markets, along with their populations.
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 18
blank |
|
text | 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006
| Number of
| 26.75 26.92 27.25 27.53 27.66 27.89 28.48 28.61 28.72 28.78 28.86
| stations
| Number of
| 16.58 15.55 14.94 14.21 13.29 13.03 13.16 12.96 12.73 12.52 12.48
| owners
| C3 0.77 0.83 0.88 0.91 0.97 0.95 0.93 0.93 0.93 0.93 0.90
| Number of
| 4.43 5.10 5.66 5.94 6.58 6.32 6.31 6.34 6.42 6.38 6.28
| stations owned
| Fraction of
| stations that 0.12 0.12 0.10 0.11 0.12 0.03 0.04 0.03 0.03 0.03 NaN
| changed ownership
| Fraction of
| stations that 0.11 0.11 0.13 0.12 0.12 0.13 0.10 0.11 0.11 0.11 NaN
| changed format
| Ad quantity 23.19 25.85 26.12 28.45 30.31 24.71 28.37 24.54 28.16 28.30 26.95
| Price divided by
| 1.00 0.96 1.08 1.10 1.26 1.51 1.42 1.51 1.39 1.37 1.43
| price in 1996
blank |
text | Table 2.2: Panel data descriptive statistics
blank |
text | To achieve a sharper identification of the random effects covariance matrix, I use
| listenership shares of different demographic groups in each of the formats that has
| been aggregated from the 100 biggest markets 2 . I observe listenership shares of
| different age/gender groups within each station format between 1998 and 2006, and
| shares for income, race and education groups between 2003 and 2006. Unfortunately,
| I do not observe a full matrix of market shares for all the combinations of demographic
| variables. For example, I do not see what the share of rock stations is among black,
| educated males. Instead I have shares for blacks, educated people, and males.
| Table 2.2 contains some basic aggregate statistics about the industry. The top
| part of the table documents changes in concentration of radio station ownership.
| The average number of stations owned in our dataset grew from 4.43 in 1996 to
| 6.28 in 2006. This ownership consolidation resulted in growth of the market share
| of the 3 biggest owners (C3) from 77% in 1996 to 90% in 2006, peaking at 97% in
| 2000. The middle part of the table contains the average percentages of stations that
| switched owners and that switched formats. Between 1996 and 2000 more than 10%
| of stations switched owners yearly. After 2000 the number dropped to below 4%.
| Greater concentration activity in the 1996-2000 period was also associated with more
| format switching. The percentage of stations that switched format peaked in 1998
| and 2001 at 13%.
meta | 2
text | Source: Arbitron Format Trends Report
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 19
blank |
|
|
title | 2.5 Estimation
text | The estimation of the model is done in two steps. In the first step, I estimate the
| demand model that includes parameters of the consumer utility θL (see equation
| (2.4)) and the unobserved station quality lag parameter ρ (see equation (3.1)). In
| the second step, we recover parameters of the inverse demand for advertising θA , wjj 0
| (see equation (2.5)) and cost parameters θC (see equation (2.7)).
blank |
|
title | 2.5.1 First stage
text | This stage provides the estimates of demand for radio programming θL . Estimation is
| done using the generalized method of simulated moments. I use two sets of moment
| conditions. The first set is based on the fact that innovation to station unobserved
| quality ξj has a mean of zero conditional on the instruments:
blank |
text | E[ξjt − ρξjt−1 |Z1 , θL ] = 0 (2.10)
blank |
text | This moment condition follows Berry, Levinsohn, and Pakes (1995) and extends it by
| explicitly introducing auto-correlation of ξ. I use instruments for advertising quantity
| since it is likely to be correlated with unobserved station quality. My instruments
| include: lagged mean and second central moment of competitors’ advertising quantity,
| lagged market HHIs and lagged number and cumulative market share of other stations
| in the same format. These are valid instruments under the assumption that ξt follows
| an AR(1) process and the fact that decisions about portfolio selection are made before
| decisions about advertising.
| A second set of moment conditions is based on demographic listenership data.
| Let Rf c be the national market share of format f among listeners possessing certain
| demographic characteristics c. The population moment conditions are
blank |
text | exp[δjmt + µmt ji ]
| Z Z Z
| P mt mt
| t
| dF (νi )dFct (Dic , m)dt = Rf c (2.11)
| t t ,m)
| (Dic νi 0
| j ∈s mt exp[δ j 0 + µ ij 0 ]
blank |
text | where Fct (Di , m) is a national distribution of people who possess characteristic c at
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 20
blank |
|
|
text | time t. Each person is characterized by the demographic characteristics Di and the
| market m they belong to.
| For each time t and demographic characteristic c, I draw I observation pairs
| t
| (Dic , m) from the nationally aggregated CPS. Let g = (g1 , g2 ) represent the empirical
| moments and W be a weighting matrix. I estimate the model by using the constrained
| optimization procedure:
blank |
text | min g 0 W g
| θL ,ξ,g
blank |
text | Subject to:
| r̂jmt (qmt |smt , ξmt , dmt , θL ) = rjmt ∀t, m
| (2.12)
| exp[δjmt + µmt ji ]
| Z
| 1 X X
| P mt mt
| dF (νi ) − Rf c = g1 ∀c
| TI t t ν i j 0 ∈smt exp[δ j 0 + µ ij 0 ]
| (Dic ,m)
| 1
| Z1 (ξ − ρLξ) = g2
| size of ξ
blank |
text | where L is a lag operator that converts the vector ξ into one-period lagged values. If
| the radio station did not exist in the previous period, the lag operator has a value of
| zero. Integration with respect to demographics when calculating the first constraint is
| obtained by drawing from the CPS in the particular market and period. This way of
| integrating allows us to maintain proper correlations between possessed demographic
| characteristics. The same is true when obtaining the data set Dict . When computing
| the interaction terms µ in the second constraint, I draw one vector νi from the normal
| distribution for each Dict .
blank |
|
title | 2.5.2 Second stage
text | The second stage of the estimation obtains the competition matrix Ω and the pa-
| rameters of demand for advertising θA . The estimation is done separately for every
| market, thereby allowing for different Ω and θA .
| To compute the matrices Ωm for each market I use the specification layed out in
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 21
blank |
|
|
text | section 2.3.3. The elements of the matrix Ω are specified as
blank |
text | 1 X
| ωf f 0 = P 2
| ra|f ra|f rf 0 |a
| a∈A ra|f a∈A
blank |
|
text | following equation (2.6). The rf |a are advertisers’ beliefs about listeners’ preferences
| for formats. These are constant across markets. To recognize that advertisers know
| the demographic composition of each market I allow for market specific listener arrival
| rates for each format rfm|a . However, I assume that the advertisers compute those
| values by using Radio Today reports and the Current Population Survey. After
| computing weights, I treat Ωm as exogenous and fixed in all of the following steps 3 .
| After computing matrices Ω, I estimate θA . Using estimates of demand for radio
| programming θL from the first stage, I compute ratings for each station conditioned
| on the counterfactual advertising quantities. I use the set of 3M moment conditions
blank |
text | Em [η m |Z2 , θA , θC ] = 0 ∀m ∈ M (2.13)
blank |
text | where the integral is taken with respect to time and stations in each market. ηjtm is
| an unobserved shock to marginal cost defined in equation (2.5). The Z2 are three
| instruments: a column of ones, the AM/FM dummy and number of competitors in
| the same format. They are uncorrelated with η m under the IID assumption, but
| are correlated with the current choice of quantity because they describe the market
| structure.
| We back out ηjtm using FOCs for owner’s profit maximization (see equation (2.7))
blank |
text | ∂rjt 0 t
| X
| ηjt = rjt ptj + qjt 0 A t m C
| p 0 − θ2m rj 0 ωf f 0 − θm ∀t ∈ T, k ∈ Ktm , j ∈ stm (2.14)
| ∂qjt j k
| j 0 ∈stm
| k
blank |
|
text | A A C
| Since the equation does not depend on θ1m , I can use it to estimate θ2m and θm . During
| the estimation, I allow for a different value of marginal cost for each market. I allow
meta | 3
text | Such an approach potentially ignores possible variance of the Ωm estimator. The source of
| this variance might come from the finiteness of the CPS dataset and the distribution of Arbitron
| estimates.
meta | CHAPTER 2. MERGERS IN TWO-SIDED MARKETS 22
blank |
|
|
text | for 3 different values for the slope of inverse demand depending on the population of
| the market (up to 500 people, between 500 and 1500, and 1500 or more). Ratings
| and derivatives of ratings in the equation (2.14) are calculated using the estimates of
| θL and ξ from the first stage. Demographic draws are taken from the CPS and are
| A