Skip to main content

Is the phrase "it's just a matter of semantics" meaningless?


I hear this phrase from time to time, and I really don't know what it means. Two people are debating, and one says "the difference between your position and mine is just a matter of semantics." This would seem to me to be quite an important difference. That is, if one person means one thing, and the other person means something else, then they really do have different positions.


If they said "it is just a matter of terminology" or "just a matter of phrasing" I would get it. But if someone says "we differ only what we mean" ... it kinda makes me chuckle because it seems to be saying that their meaning is not important, as if the argument was primary and the positions they take a secondary consideration.


So I started looking around for examples of this. I guess it seems that there is a popular notion that semantics is about very fine distinctions, such as: I think it's just a matter of semantics, not so much a difference per se


Another interpretation seems to be that semantics is the difference between two ways of saying the same thing: I usually involve the students in the creation of classroom rules. To me, we are just agreeing upon how we can make our classroom a safe and fun place to be. I don’t know if it’s really so different from a DWS approach of having procedures, but “no rules.” Isn’t this just a matter of semantics?


Maybe it is just a way of stopping an annoying conversation: In ordinary conversations, when people debate a point and the words they are using for discussion they often backhand this disagreement with the phrase “It’s a matter of semantics.”


And then there is some usage that I simply don't understand: I recently spoke at a mens' event in which one of the participants asked me if having a good and noble heart was just a matter of semantics. -- In other words, does it really matter?


And also: The Argument for and against the 6-3-3-4 system of education has raged on as stakeholders give conflicting position on whether it stays or not .... the 6-3-3-4 policy is just a matter of semantics, the government cannot take decisions without due consultations.


Still, to me it is just a meaningless phrase. Am I missing an important meaning here?



Answer



The phrase "it's just a matter of semantics" is not a meaningless phrase. Two people can agree on meaning, and still differ on semantics.


Semantics is defined as



  1. the study of meaning (Wikipedia) - this definition does not apply in this case, because we are not talking about the practice of studying language.

  2. The meaning or the interpretation of a word, sentence, or other language form - this refers to the semantics of a particular statement, that is, the meaning of that statement.


All this does is open a conversation on the nature of meaning. If the semantics of the conversation is defined as the meaning of their statements, how can it be that two people agree on meaning, and yet differ on semantics? The definition of semantics as the meaning of the utterances is not strictly correct. According to Wikipedia, meaning is derived not only from semantics, but also pragmatics. Semantics deals with the relationship of words (symbols) to their meaning. Pragmatics deal with how context affects meaning, and is one way that semantics does not reflect the complete picture when it comes to the meaning of a statement. In this way, the second definition is a loose, colloquial definition.


It is possible for semantics to vary from person to person. That is, the mapping between words and meaning for one person may not hold for another person. It is possible for two people to agree on a position (their intended meaning) and still disagree on the meaning of the words. This would be better described as a "matter of terminology" however a disagreement about terms to use might occur even if you agree on the meanings of the terms. The claim that it is a matter of semantics says specifically that you have a disagreement on the meanings of words.


An example of this (thanks to Bill Frank's comments) is two people arguing about same-sex marriage. In this scenario both take the position that laws need to change, and that same-sex unions should be supported legally. But one takes the position that gay people should be allowed to marry and have the legal rights that come with it. The other takes the position that civil unions should be accorded all the rights and privileges of marriage. The net effect is the same: same-sex couples gain key rights, but the positions differ on what to call this relationship. These debaters differ on semantics -- the meaning of the word "marriage" -- while meaning the same thing in terms of actions to change the world.


The phrase is misused when people intend to say only that the difference in position is very small. It is also misused when just trying to dismiss the other as not being worth the bother. While the difference in meaning that two people have over words is likely to be small, the phrase is referring specifically to people having a difference of meanings associated with words. Thus, some of the citations in the question are proper uses of the phrase.


I doubt if this answer is 100% correct, since the entire field of linguistics is highly philosophical, and there is still considerable disagreement among the various branches. This answer does clarify that "the semantics of a statement" is not necessarily the intended meaning of the speaker, nor is there necessarily a single "semantic meaning" of a given statement. I don't see a better answer than this one, so I am answering my own question, but I am very much grateful to the comments from others that have helped me clarify this concept. It seems, in the end, that this entire discussion, is just a matter of semantics, in more ways than one.


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