Skip to main content

mathematics - Why do we say "lowest common denominator" when we mean "greatest common divisor"?


For example, we could say HTML is the lowest common denominator on the web", because one can be sure all web browsers are able to render HTML (but not Flash or Java). If I want my web page to show properly everywhere, I know I can use maximum set of features shared between all web browsers, i.e. HTML. Yet, we don't say HTML is the greatest common divisor, which would be a correct analogy.


Why is the mathematical term lowest common denominator misused in everyday usage?



Answer



Because people think of something as "low" and "common", both of which it is, and then get themselves mixed up and say "lowest common denominator" which is not what they mean. (This vaguely similar to the way people say "steep learning curve" based on informal ideas of steep surfaces being difficult to climb, without thinking carefully of what a learning curve is and what steepness actually means for one.)


In short, the typical usage of "lowest common denominator" is a logical mistake. To speculate why it happens, my guess is that it's brought about by wanting (rightly) to use the terms "low" and "common", and the temptation of using (incorrectly) the technical-sounding term "lowest common denominator". That, and the fact that one has seen others use the phrase in that sense!


Using something that's actually logically right — like "highest common factor" — sounds positive rather than negative, so this is less used. (Although, in your HTML example, you could use something like "largest common subset of features", and be both right and understood.)




That's the answer, but explanation of the literal meaning…


To take the example of TV shows — because the citation given on Wiktionary is "Reality TV really is appealing to the lowest common denominator in audiences" — it is often said of low-quality populist shows that they are dumbed down, and at the "lowest common denominator", in order to cater to a large population. In this case, it is true that the quality may be low, and that the intention is to make something of a quality whose acceptability is common to the large population. But the resulting quality of the show is actually the greatest common factor! It is at the greatest level of quality that is still common (that's why it's low, because it needs to be common). If they were actually picking the lowest common quality, it would be even lower, or zero.


[Mathematical background: In mathematics, there are two related concepts: the greatest/highest common divisor/factor of two integers, say 15 and 24, is the greatest factor common to both, in this case 3. (Note that 3 is lower than 15 and 24.) The lowest common multiple of the integers is the smallest multiple common to both; in this case 120. (Note that 120 is greater than 15 and 24.) So the lowest common multiple is greater than the numbers, and the greatest common factor is lower than the numbers. This itself should be enough to suggest that if what you want to talk of is something low, you must use "greatest common…", not "lowest common…". But most people don't think so much.


Lowest common denominator is another term which is used when adding fractions: if you're adding the fractions 1/15 and 1/24, you convert them both to the lowest common denominator, which is the lowest common multiple of the denominators. In this case, the lowest common denominator is 120, and you write 1/15 as 8/120 and 1/24 as 5/120, so that you can add them: 1/15 + 1/24 = 8/120 + 5/120 = 13/120.
Even in this case, the lowest common denominator (120) is larger than the original denominators (15 and 24).]


The actual "lowest common factor" of any set of integers is 1, irrespective of what the numbers are, so it's not a very useful term. Similarly, the literal meaning of "lowest common denominator", when used in its usual context, refers to a quality that is always zero (or the minimum possible) irrespective of the population: the lowest common denominator among high-school graduates, the lowest common denominator among the whole population, and the lowest common denominator among people with PhDs would all be the same: abysmal.


Edit: Someone on Wikipedia has already explained this:



In common non-mathematical usage, the term "least common denominator" is often misused for the concept of the greatest common divisor. For example, a graphic toolkit which rendered features like lines and polygons into either Microsoft VML or standard SVG might choose to implement only the maximum set of graphic attributes common to both destination formats, which is an easy analogy to the concept of the greatest common divisor (The greatest common divisor of 12 and 18 is 6, which is the largest factor evenly dividing both numbers). If the systems being compared are very similar, then the common functionality can be a powerful subset (as the greatest common divisor of 375 and 250 is 125), while if the systems are very dissimilar the common capabilities might be very minimal (as the greatest common divisor of 270 and 98 is only 2). With additional systems (or numbers), the set of features common to all cannot grow and often shrinks (likewise for finding the greatest common divisor for a series of numbers).


This approach of making use of only the greatest subset of function common to all supported systems is often disparaged when the common feature set is sparse or weak (by analogy, having a small "greatest common divisor"). In this context colloquial usage has conflated the concept of "greatest common divisor" with the familiar sounding jargon of "least common denominator", which seems to emphasize smallness of overlap through the word "least", but actually refers to a different and inappropriate mathematical concept.



Edit 2: In case it helps, below is a vague picture illustrating what I mean. (Anyone please feel free to make a better image and replace this.)


Highest common factor, etc.


When most people say "lowest common denominator", they mean the second horizontal line, near the bottom: it's very low, because it must be common to so many, but it's also not zero. If you take "lowest common denominator" in its mathematical sense of being an lcm (of some set of existing denominators), then it's actually higher than the elements of the set, and is the highest line. If you use "denominator" to mean just "trait", then the "lowest common denominator" is literally the lowest common trait, which is the very bottom-most line: it's always zero (or 1 in mathematics, if you're talking of factors), independent of your original population, and even lower than it needs to be.


Comments

Popular posts from this blog

etymology - Origin of the greeting "Sweet dreams".

Does anybody know the etymology of the phrase "sweet dreams"? I tried googling but did not find anything satisfying. Is this a relatively new phrase of the modern world or has this been in use for some time? I think it's the latter one. Answer The OED has the interjection as "a farewell to someone going to bed" from the 20th century: 1908 Sears Roebuck Catal. 198/1 Tenor Solos..Good Bye, Sweet Dreams, Good Bye. But it goes back until at least the 19th and possibly 18th centuries. John Wolcot, writing under the pseudonym of Peter Pindar, used it in his poem "Orson and Ellen; A Legendary Tale" published in 1801: Also from 1801 in The infernal Quixote (Page 287) by Charles Lucas: In the March 1776 of The Universal Magazine was published "The Serenade. A Pastoral Tale. From the German of Gesner" , where the shepherd Daphnis watches over his beloved as she sleeps and sings: The same tale appears in 1776's as Idyl XI, " Daphnis ...

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 ...

What are the similarities between the relationships of the characters in The Outsiders and Romeo and Juliet?

At first glance, it might appear as if the characters in  The Outsiders  by S. E. Hinton and  Romeo and Juliet  by William Shakespeare do not have much in common; however, when one isolates the core of the conflicts, it becomes clear that the relationships in both stories are rooted in rivalry and secrecy.  In both  The Outsiders  and  Romeo and Juliet , an overarching theme is rivalry. While   socioeconomic status separates the greasers from the Socs in The Outsiders , last names separates the Montagues from the Capulets, who appear to be relatively equal in terms of socioeconomic status. Due to these rivalries, there are instances of deadly interactions in both stories. In  The Outsiders , Johnny kills Bob (whether his actions were justified or not is debatable). In  Romeo and Juliet , Romeo kills Tybalt and Paris, and Tybalt kills Mercutio. These deaths have profound effects on the main characters. In Ponyboy's case, the Johnny's death and other events in the novel inspire h...