Speech Act Theory

From BloomWiki
Revision as of 01:58, 25 April 2026 by Wordpad (talk | contribs) (BloomWiki: Speech Act Theory)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

How to read this page: This article maps the topic from beginner to expert across six levels � Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating. Scan the headings to see the full scope, then read from wherever your knowledge starts to feel uncertain. Learn more about how BloomWiki works ?

Speech Act Theory is the study of "Language as Action"—the realization that we don't just use words to "Describe" the world, but to "Change" it. While "Semantics" looks at what words "Mean," Speech Act Theory looks at what words **DO**. When you say **"I do"** at a wedding, **"I promise"** to a friend, or **"You're fired"** to an employee, you are "Performing an Act" with your mouth. From **J.L. Austin's** discovery of "Performatives" to **John Searle's** categorization of "Speech Acts," this field explores the "Power" of the voice. It is the science of "Verbal Impact," explaining how "Sounds" can create "Laws," "Marriages," and "War."

Remembering

  • Speech Act — An utterance that serves a function in communication (e.g., apologizing, greeting, promising).
  • The Three Levels of a Speech Act (Austin):
    • Locutionary Act — The "Physical act" of saying the words (The 'Sound' and 'Grammar').
    • Illocutionary Act — The "Intended action" (What you are *doing* by saying it, e.g., 'Warning' or 'Requesting').
    • Perlocutionary Act — The "Result" on the listener (What *happens* as a consequence, e.g., 'Scaring' or 'Convincing').
  • Performative Utterance — A sentence that "Performs the act" it describes (e.g., 'I name this ship the Queen Mary').
  • Felicity Conditions — The "Rules" that must be met for a speech act to "Work" (e.g., you can't "Fire" someone if you aren't their boss).
  • Searle’s Categories of Speech Acts:
  1. Assertives — Telling someone how things are (Stating, Boasting).
  2. Directives — Trying to get someone to do something (Ordering, Asking).
  3. Commissives — Committing yourself to a future action (Promising, Vowing).
  4. Expressives — Expressing feelings (Apologizing, Congratulating).
  5. Declarations — Changing the state of reality (Declaring War, Excommunicating).
  • Indirect Speech Act — When the "Literal meaning" is different from the "Intended action" (e.g., saying 'Is there any salt?' instead of 'Pass the salt').
  • Grice’s Maxims — The "Rules of Conversation" (Be Truthful, Be Relevant, Be Clear, Be Brief).

Understanding

Speech act theory is understood through Action and Authority.

1. Words that "Build" (Performatives): Language is not just a "Mirror" of reality.

  • If I say "The cat is on the mat," nothing in the world changes.
  • If a Judge says "I sentence you to 10 years," the world **Actually Changes**.
  • The Judge has "Performed a Declaration."
  • Speech Act Theory shows that "Social Reality" (Money, Marriage, Laws) is built entirely out of "Words that Act."

2. The "Hidden" Request (Indirect Acts): Humans are "Polite" and "Complex."

  • If a guest says "It's getting a bit cold in here," they are not just "Making an Assertive" (stating a fact).
  • They are "Making a Directive" (asking you to close the window).
  • We "Decode" these acts using "Context" and "Social Rules." A "Robot" might just say 'Yes, it is cold' and do nothing.

3. The "Power of Promise" (Commissives): When you "Promise," you "Bind the Future."

  • You are creating a "Moral Debt" using nothing but "Vibrated Air."
  • If you break the promise, the "Speech Act" was "Infelicitous" (it failed).
  • Trust is the "Currency" of Speech Acts.

Austin's 'How to Do Things with Words' (1955)': The book that "Revolutionized" linguistics. Before Austin, philosophers only cared about "Truth" (Assertives). Austin proved that "Truth" is only one small part of what we use language for. Most of life is "Doing," not "Stating."

Applying

Modeling 'The Speech Act Analyzer' (Classifying the 'Impact' of a sentence): <syntaxhighlight lang="python"> def analyze_speech_act(sentence, speaker_role):

   """
   Categorizes based on Searle's model.
   """
   if "promise" in sentence.lower() or "will" in sentence.lower():
       return "COMMISSIVE (Commitment to the future)"
   elif "order" in sentence.lower() or "?" in sentence:
       return "DIRECTIVE (Trying to change the listener's behavior)"
   elif "declare" in sentence.lower() and speaker_role == "Authority":
       return "DECLARATION (Changing Reality/Social State)"
   elif "sorry" in sentence.lower() or "congrats" in sentence.lower():
       return "EXPRESSIVE (Sharing a feeling)"
   else:
       return "ASSERTIVE (Stating a Fact/Belief)"
  1. Case: A General saying "I declare war!"

print(analyze_speech_act("I declare war!", "Authority"))

  1. Case: A friend saying "I'll be there at 8."

print(analyze_speech_act("I'll be there at 8.", "Peer")) </syntaxhighlight>

Speech Landmarks
The 'I Do' → The most famous "Performative": the "Speech Act" that creates a "Marriage" out of "Nowhere."
The 'Chinese Room' (Searle) → (See Article 113). John Searle’s argument that a computer can "Process Locutions" (the symbols) but will never "Understand the Illocutionary Force" (the meaning and intent).
Pragmatics → The whole branch of linguistics that grew out of Speech Act Theory, focusing on how "Context" changes "Meaning."
Legal 'Standing' → In law, a "Speech Act" only "Works" if you have the "Right to say it." This is the "Felicity Condition" in action.

Analyzing

The Three Levels of the Act
Level Name Meaning Example
1 Locutionary The 'Sound' "Can you open the door?"
2 Illocutionary The 'Action' A Request for help
3 Perlocutionary The 'Effect' The door gets opened (or the listener gets annoyed)
Analogy The 'Bullet' The 'Shot' The 'Target being hit'

The Concept of "Conversational Implicature" (Grice): Analyzing "The Unsaid." When someone says "You look... different today," they are "Implying" something they didn't "Say." We follow "Maxims" (rules) of conversation. If someone "Breaks a rule" (e.g. being too brief), we "Search for the hidden meaning."

Evaluating

Evaluating speech act theory:

  1. The "Digital" Speech Act: Does "Clicking 'I Agree' " on a website have the same "Speech Act Power" as a "Vocal Promise"?
  2. Authority: If a "Dictator" orders a "Crime," and the soldier obeys, who "Performed" the act? (The 'Agentic State' of Article 476).
  3. Sincerity: If I "Promise" but have "No Intention" of doing it, is the "Speech Act" real? (The 'Inner vs. Outer' debate).
  4. AI: When an AI says "I am sorry," is it a "Speech Act"? (Can something without "Feelings" perform an "Expressive"?).

Creating

Future Frontiers:

  1. AI Pragmatics Engines: An AI that can "Read the hidden intent" of an email (e.g., 'He is actually asking for a raise, but being polite'), helping humans "Navigate" complex social waters.
  2. Smart Contracts: Turning "Declarations" (Law) into "Code" that "Automatically Executes" (e.g., 'If the promise is broken, the money is returned'), making the Speech Act "Unstoppable."
  3. Global 'Truth' Scoreboards: A system that "Tracks every Public Commissive" (Promise) made by a politician and "Visually displays" if they were "Felicitous" or not.
  4. Cross-Cultural Speech Translators: An app that "Translates the Intent" across cultures (e.g., translating a "Polite No" from a Japanese speaker into a "Clear No" for an American speaker).