Writing a summary grammar involves concisely capturing the essential rules and structures of a language in a simplified and easily understandable format. Since the question is a bit ambiguous, let's clarify it by focusing on how to write a summary and how to define a grammar, then combine the two.
Part 1: Writing a Summary
According to the provided reference, a summary is a condensed version of an original text, highlighting its main points. Key elements include:
- Introductory Sentence: Start with a sentence that identifies the text's title, author (if applicable), and the overall main point.
- Own Words: Express the original text's ideas using your own vocabulary and sentence structure.
- Focus on Original Ideas: Include only information and concepts present in the source material. Your own opinions or interpretations are not part of a summary.
- Paragraph Form: The summary should be written as a coherent paragraph, not a list of bullet points (although you can plan it using bullet points).
Part 2: What is "Grammar"?
The term "grammar" can refer to several related concepts:
- Descriptive Grammar: This describes how a language is actually used by its speakers and writers. It's based on observation and analysis of language data.
- Prescriptive Grammar: This sets rules for how a language should be used, often based on tradition or perceived notions of correctness.
- Formal Grammar: This is a system of rules used in computer science and linguistics to define the syntax of a language, often using mathematical notation.
Part 3: Writing a Summary of a Grammar (Descriptive or Prescriptive)
If the goal is to summarize a description of English (or any other) grammar, you would follow the principles of summary writing outlined in Part 1. For example, you might summarize a grammar textbook or a research paper on a particular grammatical feature.
Here's how you might approach it:
- Identify the Main Points: What are the most important grammatical rules or concepts covered in the original text?
- Organize the Information: Group related ideas together to create a logical flow.
- Use Concise Language: Express each rule or concept in the fewest possible words, without sacrificing clarity.
- Provide Examples: Include short examples to illustrate each rule or concept.
Example:
Let's say you are summarizing a section of a grammar textbook on the use of the present perfect tense. Your summary might look like this:
"In their textbook, English Grammar Explained, John Smith and Jane Doe explain that the present perfect tense is used to describe actions that started in the past and continue to the present, or actions that happened at an unspecified time in the past and have relevance to the present. For example, 'I have lived here for ten years' indicates an ongoing state, while 'I have visited Paris' indicates a past experience with present relevance."
Part 4: Writing a Summary as a Grammar (Formal Grammar)
Alternatively, if "summary grammar" means creating a simplified formal grammar (e.g., for a programming language or a simplified version of a natural language), you'd be creating a set of rules to define the language's structure. This is a different process entirely. It involves:
- Identifying the basic components: What are the fundamental elements (words, symbols, etc.) that make up the language? These are your terminals.
- Defining the rules: How can these components be combined to form valid phrases or sentences? These are your production rules.
- Specifying the starting point: What is the initial symbol from which all valid sentences can be derived? This is the start symbol.
Example (Simplified):
Here's a simplified formal grammar for basic arithmetic expressions, using Backus-Naur Form (BNF):
<expression> ::= <term> | <expression> "+" <term> | <expression> "-" <term>
<term> ::= <factor> | <term> "*" <factor> | <term> "/" <factor>
<factor> ::= <number> | "(" <expression> ")"
<number> ::= <digit> | <number> <digit>
<digit> ::= "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
This "summary grammar" defines how to construct valid arithmetic expressions using numbers, operators, and parentheses.
Conclusion
The method for writing a summary grammar depends on what you're summarizing about grammar. If you're summarizing a descriptive or prescriptive grammar, focus on extracting and condensing the key rules and concepts. If you're creating a formal grammar, you're defining the rules of the language itself.