Industry Consolidation and Powerlaws

Conventional wisdom holds that standardization is a means to create increased competition. This is not always the case. Conventional wisdom holds that deregulation is a means to increase competition. This is not always the case. Regulation and lack of standards are two ways that can frustrate the consolidation of small firms in an industry into larger firms.

This graph is an output of a simulation of an industry undergoing consolidation. The lines show the distributon of firm sizes in the industry. Each line on the log-log graph is one step toward a more consolidated industry. The line along the bottom shows the industry at the start of the simulation; a ten thousand firms all of size one. As the simulation proceeds firms merge; each merger creates a larger firm. Each line show the distribution of firm sizes after another hundred firms have been absorbed until there are only four thousand firms left; but notice that one of these firms has captured three thousand of the original firms in the market! Now that’s a way to concentrate wealth!

An Industry Consolidating

You can see the power-law distribution of firm sizes emerging spontaneously as the consolidation takes place. I.e. this is another means to create a power-law distribution.

Let’s peel back a bit more what’s going on here. This model is based on what graph mavens call a random graph. Each of the original firms is a node in this random graph. To start their are no links at all between them. The simulation proceeds by creating random linkages between these original firms. As links are introduced groups of firms are consolidated into now merged firms; or in graph theory terms you get connected components. Clearly if we do this long enough we will get one giant firm. That is often referred to a a phase transition; in which case we might say that the industry condensed or froze rather than consolidated.

Note that this model creates links between the original firms, so that a firm that is consolidated out of 100 of the original firms is a 100 times more likely to get a random link than one of the original firms is. That creates the usual rich get richer as well as the advantage to the early mover found in the power-law scenarios. The random nature of the linking also reminds us that there is no “merit” revealed by the distribution other than size and luck. Consider what that implies for the sleepy members of an industry the moment that the regulatory (or technological) barrier to consolidation is repealed and suddenly what was impossible before; mergers, are now key to the firm’s ongoing survival.

In the last step in the simulation graphed here you can see that the power-law distribution is on the verge of failing to provide a good fit; the industry is about to freeze up into one giant monopoly.

Both regulation and a lack of standards make it harder to create the random linkages that encourage this kind of consolidation. Something to keep in mind when chatting with the advocates of standards, deregulation, and free trade. Something to think about when large firms argue that deregulation and standards are good for small business. Something to think about when free trade advocates argue that free trade is an unalloyed good for small countries. It is more complex than that.

The code that does this simulation…

(defun simulate-industry-consolidation (original-number-of-firms final-number-of-firms)
  (let ((industry (create-industry original-number-of-firms)))
    (consolidate industry final-number-of-firms)))

(defclass firm ()
  ((size :accessor size :initform 1)
   (parent? :accessor parent? :initform nil)))

(defmethod owner (firm)
  (loop for mgr = firm then parent?
        finally (return mgr)
        as parent? = (parent? mgr)
        while parent?))

(defclass industry ()
  ((firm-count :accessor firm-count :initarg :firm-count)
   (firms :accessor firms)))

(defun create-industry (firm-count)
  (loop with new-industry = (make-instance 'industry :firm-count firm-count)
        finally (return new-industry)
        with firms = (make-array firm-count)
        initially (setf (firms new-industry) firms)
        for i below firm-count
        do
        (setf (svref firms i) (make-instance 'firm))))

(defmethod consolidate ((industry industry) (final-number-of-firms fixnum))
  (loop
    while (< final-number-of-firms (firm-count industry))
    do (introduce-random-link-and-merge-if-necessary industry))
  industry)

(defmethod random-firm ((industry industry))
  (let ((firms (firms industry)))
    (svref firms (random (length firms)))))

(defmethod introduce-random-link-and-merge-if-necessary ((industry industry))
  (let* ((owner1 (owner (random-firm industry)))
         (owner2 (owner (random-firm industry))))
    (unless (eq owner1 owner2)
      (when (< (size owner1) (size owner2))
        (rotatef owner1 owner2))
      (merge-firms industry owner1 owner2))))

(defmethod merge-firms ((industry industry) (superior firm) (subordinate firm))
  (setf (parent? subordinate) superior)
  (incf (size superior) (size subordinate))
  (decf (firm-count industry)))

(defmethod independent-firms ((industry industry))
  (remove-if #'parent? (firms industry)))

(defmethod firm-size-data ((industry industry))
  (sort
   (map 'list #'size (independent-firms industry))
   #'>))

(defun run-simulation (before after steps)
  (loop
    with step-size = (floor (- before after) steps)
    with industry = (create-industry before)
    initially
    (graph-log-log (firm-size-data industry))
    for reduced-firm-count from (- before step-size) downto after by step-size
    do
    (consolidate industry reduced-firm-count)
    (add-to-graph-log-log (firm-size-data industry))))

0 thoughts on “Industry Consolidation and Powerlaws

  1. Andy

    That’s a bit simplistic to prove your point. I’d like to see this cross modeled with simple economic theory (supply/demand and the price curve). I’m not sure there is a governing theory but I’d like to see the likely effect on price and the creation of new firms hoping to fill the demand as the pice goes up. Thus I expect it will mitigate your model but I’m curious to what degree. The mathmatics of all of that are of course way over my head but my hypothesis is that all things end up being owned by maybe four firms Rupert Murdock, Bill Gates, GM or GE in the end. 😉

  2. Ben Hyde

    On the supply side the question is do you think that these concentrated companies are more efficent than the fragmented firms. If they can tap some supply side scale efficencies then things are going to condense even faster.
    Similarly on the the demand side the question is do you think there are demand side economies of scale. The list in the link at the end of the first paragraph is really an enumeration of things that frustrate the scale efficencies.

    What about the Waltons?

Leave a Reply

Your email address will not be published. Required fields are marked *