Skip to main content

Why do consumers care about whether companies in an oligopoly collude? What is your viewpoint regarding the government’s role in this?

The basic theory of market economics states that free competition between companies providing consumer goods will lead to better products at lower prices.  On a personal level, when I go to the store, I look at the items on sale, and I can either select the cheapest, or I can select a more expensive item, in which case I generally have some reason for that preference.  In other words, if I choose to buy a more expensive item, it will be because I think it's better.


If there are only two or three companies producing a particular item, and they collude, agreeing to all charge a higher price than the minimum that would allow them to stay in business, then I will be forced to pay more for my purchase than if they were really competing.  And since I will see the illusion of competition, it will not occur to me to start my own company competing with them.  If there would only be one monopoly producer, and I have an idea that I could make money selling their product cheaper than they do, I would build my own factory, and soon the price would be lower, or quality would be better.  But if I think there is competition, I will be less likely to take the risk of building a factory.


So, collusion between companies in oligopoly industries (if there are hundreds or thousands of suppliers, there will always be someone to break the rules and sell cheaper than everyone else) will keep prices higher and quality lower than free competition.


Since the temptation for companies to collude is very strong, and consumers' ability to investigate and detect collusion is very small, this is a clear case of potential market failure and is therefore a valid candidate for government intervention to keep companies honest.


As an example, without this government intervention, computer and smartphone manufacturers would have colluded to keep prices high and save money on research and development and we would have missed the incredible price drops and quality improvements that we have seen every year since 1980.

Comments

Popular posts from this blog

Is there a word/phrase for "unperformant"?

As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...

A man has a garden measuring 84 meters by 56 meters. He divides it into the minimum number of square plots. What is the length of the square plots?

We wish to divide this man's garden into the minimum number of square plots possible. A square has all four sides with the same length.Our garden is a rectangle, so the answer is clearly not 1 square plot. If we choose the wrong length for our squares, we may end up with missing holes or we may not be able to fit our squares inside the garden. So we have 84 meters in one direction and 56 meters in the other direction. When we start dividing the garden in square plots, we are "filling" those lengths in their respective directions. At each direction, there must be an integer number of squares (otherwise, we get holes or we leave the garden), so that all the square plots fill up the garden nicely. Thus, our job here is to find the greatest common divisor of 84 and 56. For this, we prime factor both of them: `56 = 2*2*2*7` `84 = 2*2*3*7` We can see that the prime factors and multiplicities in common are `2*2*7 = 28` . This is the desired length of the square plots. If you wi...