⚠️ This page connects you to Atovia’s partners and affiliate markets. We may receive a commission from affiliate partners for activities made through these links. Discount offers may change at any time according to policy! Rest assured, there are no additional costs to you! We hope this saves you time in finding the right items!
- Parentheses enclose supplementary information that can be removed without breaking the sentence.
- They serve distinct roles in writing, mathematics, science, and programming.
- Punctuation placement relative to the closing parenthesis follows specific rules.
- Overusing parentheses weakens writing clarity and flow.

1. What Are Parentheses?
Parentheses are the curved punctuation marks ( and ) used to enclose words, phrases, numbers, or expressions that provide additional context without being essential to the main meaning of a sentence. The word comes from the Greek parentithenai, meaning “to put in beside,” which perfectly describes their function: placing supplementary content beside the primary message.
The singular form is parenthesis, and together the pair is called parentheses. Though they look simple, parentheses appear across virtually every domain of written human communication — from novels and news articles to algebra textbooks and software source code. Their ability to quietly carry extra information makes them one of the most versatile symbols in any written language.
Parentheses differ from other punctuation marks in one key way: they always come in pairs. An opening parenthesis without a closing one is considered an error in both writing and programming alike.

2. Common Uses of Parentheses in Everyday Writing
In standard written English, parentheses fulfill several practical purposes that help writers communicate with precision and nuance.
Introducing abbreviations: When using an abbreviation for the first time, writers place the full term or the abbreviation itself in parentheses. For example: The Centers for Disease Control and Prevention (CDC) issued a new advisory. Alternatively: The CDC (Centers for Disease Control and Prevention) issued a new advisory.
Adding asides and commentary: A brief parenthetical aside can inject humor, irony, or personal perspective without derailing the main sentence. Example: I submitted the project on time (barely).
Including dates and references: Parentheses are standard for embedding dates or bibliographic references inline. Example: The treaty was signed in 1648 (Peace of Westphalia), marking the end of the Thirty Years’ War.
Indicating plural possibilities: Legal, academic, and formal documents frequently use constructions like the candidate(s) or the applicant(s) to cover both singular and plural without writing two versions.
Clarifying or defining terms: When technical or uncommon terms appear, a parenthetical definition keeps the sentence flowing. Example: The patient presented with tachycardia (an abnormally rapid heart rate).

🛒 Recommended Product
3. Parentheses in Mathematics and Science
In mathematics, parentheses are far more than a stylistic choice — they are a mandatory tool that directly affects the outcome of calculations. According to the standard order of operations (often remembered as PEMDAS or BODMAS), expressions inside parentheses must be evaluated first.
Consider the difference: 3 × (2 + 4) = 18, while 3 × 2 + 4 = 10. The parentheses change the result entirely. In algebra, they also indicate multiplication when placed beside a number or variable: 4(x + 3) means four times the quantity of x plus three.
In chemistry, parentheses denote repeating molecular groups. The formula Ca(OH)₂ tells us that one calcium atom is bonded to two hydroxide groups, each containing one oxygen and one hydrogen atom. Without the parentheses, the formula would be ambiguous.
Coordinate geometry uses parentheses to express points on a plane: a location is written as (x, y), such as (5, −3). In three-dimensional space, this extends to (x, y, z).
In academic scientific writing, parentheses enclose inline citations following styles such as APA: (Johnson & Lee, 2022) or Chicago: (Smith 2019, 45). This keeps the main text uncluttered while preserving full attribution.

4. Parentheses in Programming and Coding
For anyone working with code, parentheses are not optional — they are syntactically required in nearly every programming language. Missing or mismatched parentheses are among the most common errors beginners encounter, and most modern code editors actively highlight matching pairs to help developers track them.
Function calls: Calling a function always requires parentheses, even when no arguments are passed. In Python: print("Hello, world!"). In JavaScript: document.getElementById("title"). The parentheses signal to the interpreter that the function should execute.
Conditional statements: In languages like JavaScript, Java, and C, the condition of an if statement must be wrapped in parentheses: if (score >= 60) { return "Pass"; }. Python is a notable exception, where parentheses around conditions are optional.
Arithmetic and logical grouping: Just as in math, parentheses control the order of evaluation in expressions: (a + b) * c produces a different result than a + b * c. In Boolean logic: (isAdmin || isModerator) && isLoggedIn groups the OR condition before evaluating the AND.
Regular expressions: In regex patterns, parentheses create capture groups — portions of a match that can be extracted or referenced later. For example, the pattern (\d{4})-(\d{2})-(\d{2}) captures year, month, and day separately from a date string.
Tuples and data structures: In Python, parentheses define tuples: coordinates = (40.7128, -74.0060). In some languages, they also wrap multiple return values from a function.

5. Parentheses vs. Brackets vs. Braces
Three types of enclosing marks — parentheses, square brackets, and curly braces — are frequently confused, especially by writers new to technical or formal content. Each has distinct conventional uses across writing and coding contexts.
| Symbol | Name | Primary Use |
|---|---|---|
| ( ) | Parentheses | Supplementary info in writing; grouping in math and code |
| [ ] | Square Brackets | Editorial insertions in quotes; arrays in programming |
| { } | Curly Braces | Code blocks and objects in programming; sets in math |
| < > | Angle Brackets | HTML/XML tags; placeholders in technical documentation |
In formal English writing, square brackets serve a specific purpose: they allow a writer to insert their own words into a quoted passage to clarify meaning. For example: “He [the defendant] denied all charges.” The brackets signal that the word inside was not in the original quote.
Curly braces are rare in standard prose but essential in programming, where they define the body of functions, loops, and conditionals in languages like JavaScript, C, and Java. In mathematics, they denote sets: {1, 2, 3, 4, 5}.
Understanding which symbol to use in which context prevents both grammatical errors and bugs in code — making this distinction one of the more practically valuable things a writer or developer can learn.

6. Rules and Tips for Using Parentheses Correctly
Mastering parentheses means knowing not just when to use them, but when to resist using them. The following guidelines cover the most important rules for both writing and technical contexts.
Apply the removal test: The single most reliable rule for parentheses in writing is this — remove the parenthetical content and read the sentence. If it still makes complete sense, the parentheses are appropriate. If the sentence breaks down or loses critical meaning, the content should be integrated directly into the sentence instead.
Watch your punctuation placement: When a parenthetical phrase ends a sentence, the period goes outside the closing parenthesis: She completed the marathon (in just under four hours). However, if the entire sentence is enclosed in parentheses as a standalone statement, the period goes inside: (She completed the marathon in just under four hours.)
Avoid overuse: Parentheses appearing in every paragraph signal that a writer is adding thoughts they are not fully committed to. If you find yourself relying on them heavily, revise those sentences to either include the information directly or cut it entirely. Writing flows better with fewer interruptions.
Do not nest in formal writing: Placing parentheses inside parentheses — such as (see the appendix (page 47)) — is considered poor style in most writing guides. Use alternative punctuation like commas or em dashes to reorganize the sentence. In math and code, nesting is sometimes necessary and follows strict resolution rules, with the innermost group evaluated first.
Reserve parentheses for de-emphasis: Because parentheses visually set information apart, they signal to readers that the enclosed content is secondary. If a detail is genuinely important, place it in the main body of the sentence where it carries full weight — not inside parentheses where it may be skimmed or ignored.
Ready to take your writing further? Explore our complete library of grammar guides, punctuation tutorials, and style resources designed for writers at every level.