Mathematics: Multiplication: x - ×


Many writers type the letter x when they mean the multiplication sign ×. That swap can create ambiguity (is x a variable?), break formatting, or confuse assistive tech. Below: when × is preferable, when x is correct, how to type or automate fixes, and plenty of ready-to-use wrong→right and rewrite examples.

Quick answer

Use × for arithmetic, dimensions and technical specs. Keep the letter x when it's a letter or an algebraic variable. In casual chat '3x' is common, but in formal text write 'three times' or use 3×.

  • Math/specs: use × (e.g., 7 × 8 = 56; 55 × 32 in).
  • Algebra: keep x as a variable (e.g., 3x + 2 = 11 or f(x)).
  • Casual: '3x' is fine in an informal message; avoid it in reports.

Core explanation: x vs ×

The letter x is a character in words and variable names. The symbol × is a typographic operator for multiplication. They are different Unicode characters and carry different meanings.

Simple rule: if you would say "times" aloud, use × or write out "times." If it's a name, axis, or algebraic variable, keep x.

  • Operator (use ×): 3 × 4, 10 × 5 cm, 2×(a + b) in formatted math.
  • Letter/variable (keep x): x-axis, f(x), product_code_x12.
  • Algebraic omission: 3x is standard in algebra; in formatted math you can write 3×x or 3·x to show the operation explicitly.
  • Example core: Wrong: 6x7 = 42 →
    Right: 6×7 = 42
  • Clarify context: f × g (if you mean multiply two functions use ×; if you mean f(x), keep x)

Real usage and tone: where × is required and where x is tolerated

Use × in textbooks, datasheets, invoices, product specs and any published content. Keep x for variable names, identifiers, and axes. In quick notes or chat, x appears often but rewrite for clarity in formal writing.

  • Mandatory ×: textbooks, datasheets, invoices, product pages (dimensions, calculations).
  • Keep x: algebraic variables, identifiers, labels (x-axis, variable x).
  • Tolerated x: SMS, chat, quick personal notes; prefer words or × in anything shared externally.
  • Work: Spec: Plate size: 3 × 4 cm.
  • School: Equation: Calculate 8 × 7 = 56.
  • Casual: Text: I did that 3x yesterday. (acceptable informally)

Spacing, hyphenation, and punctuation

Spacing choices depend on style: many guides put spaces around operators in equations (7 × 8 = 56). For dimensions some omit spaces (55×32 mm), but 55 × 32 mm is always clear. Never use x or × as a hyphen or dash.

  • Equations: use spaces around × for readability (3 × 4 = 12).
  • Dimensions: choose one style and be consistent - either 55 × 32 mm or 55×32 mm.
  • Hyphenation: use hyphens or en dashes for ranges and compounds; don't substitute x or × (e.g., blue-white, 1990-2000).
  • Good: 10 × 8 in. Also acceptable: 10×8 in.
  • Punctuation: Wrong: 'blue x-white' - use 'blue-white' or 'blue and white'.

Grammar, variables and accessibility

Algebra often omits a visible multiplication sign between a coefficient and a variable (3x). In plain prose or accessible content, spell out the operation or use semantic math markup so assistive tech reads the intent correctly.

  • Keep x as a variable in algebra: 'Solve 3x + 2 = 11.'
  • For accessibility: use MathML, LaTeX in semantic contexts, or write 'three times' in running text.
  • Screen readers usually announce × as "times" if math is encoded; in plain text they may read the letter x as "x" or "ex."
  • Accessible rewrite: 'Multiply 3 by 4' or '3 times 4' instead of '3x4' in plain text.

How to type × and automate fixes

Use built-in shortcuts to type ×, and automate replacements carefully with targeted patterns. Never run a blind global replace for x → ×: you will alter variables, labels, and code.

  • Windows: Alt+0215 on the numeric keypad or use Character Map.
  • macOS: Option+Shift+9 or Character Viewer.
  • HTML: × or ×. LaTeX: \times (in math mode).
  • Safe regex examples to scope replacements - test on a copy first:
    • Numeric contexts between digits/parentheses: (?<=\\d)\\sx\\s(?=\\d|\\() → replace with ×
    • Number × unit: (?<=\\d)\\sx\\s(?=\\d|\\s[A-Za-z%])
  • Tip: preview changes and exclude patterns like x-axis, f(x), product_code_x12, and code blocks.

Try your own sentence

Rewrite help: Fix your sentence step-by-step

Quick checklist: (1) Is x between numbers or next to parentheses? → probably ×. (2) Is x next to letters or in f( )? → it's a letter/variable; keep it. (3) Is the text formal or for publication? → prefer × or a word rewrite like 'three times' or 'threefold'.

  • When in doubt, rewrite with words: 'times', 'multiplied by', 'threefold', or 'twice'.
  • For bulk replacements, scope your regex and preview every change.
  • For specs, keep units and spacing consistent: '55 × 32 in' or '55×32 mm' per your house style.
  • Rewrite 1: Find: 'We increased the sample size 3x.' Fix: 'We increased the sample size threefold.'
  • Rewrite 2: Find: 'Profit increased 3x last quarter.' Fix: 'Profit increased threefold last quarter.'
  • Rewrite 3: Find: 'I told him 2x to be careful.' Fix: 'I told him twice to be careful.'

Examples: wrong → right pairs, plus work, school and casual samples

Use these pairs to replace incorrect uses directly. The right-hand version uses × where appropriate or a word-based rewrite for clarity.

  • General wrong→right:
  • Wrong: 2x3 = 6 →
    Right: 2×3 = 6
  • Wrong: 4x(2+3) = 20 →
    Right: 4×(2+3) = 20
  • Wrong: Area = length x width →
    Right: Area = length × width
  • Wrong: TV size: 55x32 inches →
    Right: TV size: 55 × 32 inches
  • Wrong: I told him 2x to be careful →
    Right: I told him twice to be careful
  • Wrong: 3 x y (ambiguous) →
    Right: 3×y (or 3y in algebraic convention)
  • Work examples:
  • Unit cost: 15 × 200 = 3,000
  • Product spec: Panel: 120 × 60 cm
  • Email phrasing: 'Increase the file size limit threefold' (instead of '3x')
  • School examples:
  • Compute: 7 × 8 = 56
  • Volume formula: V = l × w × h
  • Algebra reminder: Solve 3x + 2 = 11 (do not change the variable x)
  • Casual examples:
  • Text: 'I did that 3x yesterday.' (acceptable informally)
  • Gym note: 'Ran five times this week' instead of 'Ran 5x this week'
  • Button error: 'I hit the button ten times by mistake' instead of '10x'
  • Rewrites for clarity:
  • '3 tickets × $15 = $45' or 'Three tickets at $15 each = $45'
  • 'We increased the sample size threefold.'
  • 'Dimensions: 10 × 8 inches' (use × for specs)

A simple memory trick to pick ×

Ask: can I read it aloud as "times"? If yes → use × or write "times." If no → it's probably a letter/variable, so keep x or rewrite the phrase.

  • Mnemonic: Read it aloud-if it says "times," use ×; otherwise keep or rewrite.
  • When unsure, prefer words: 'three times' is always clear.

Similar mistakes to watch for

Other common confusions involve the dot operator, asterisk in code, and using x/× as a hyphen.

  • Dot vs ×: Some math prefers a centered dot (·) for multiplications involving variables (3·x) to avoid confusion with the letter x.
  • Asterisk (*) belongs in code; replace it with × or 'times' in prose.
  • Don't use x or × as a hyphen: write 'blue-white' or use an en dash where needed.
  • Example: In code: price = qty * unit_price - keep * in code, but use × or 'times' in published text.

FAQ

Can I use the letter x for multiplication in essays?

No. In essays and formal writing replace the letter x with × or rewrite as 'times', 'multiplied by', or 'threefold' to avoid ambiguity.

How do I type the multiplication sign on my keyboard?

Windows: Alt+0215 (numeric keypad) or Character Map. macOS: Option+Shift+9 or Character Viewer. HTML: × or ×. LaTeX: \times (in math mode).

Is 3x acceptable in a text message or Slack?

Yes - '3x' is common in informal chat. For emails, reports, or published content, rewrite as 'three times' or use 3× for clarity.

Will a screen reader announce × correctly?

Most screen readers announce × as "times" when math is encoded properly. For plain text, spell out 'times' or use semantic math markup (MathML/LaTeX) for the best accessibility.

How do I replace wrong x with × without breaking algebraic expressions?

Use targeted regex that matches numeric contexts. Example: find (?<=\\d)\\sx\\s(?=\\d|\\() and replace with ×. Test on a copy and exclude patterns like x-axis, f(x), and code blocks.

Want us to check a sentence?

Paste a sentence with x and we'll suggest whether to replace it with ×, change to words, or leave it as a variable. For bulk fixes, run the regex patterns above on a copy first and review the changes.

Check text for Mathematics: Multiplication: x - ×

Paste your text into the Linguix grammar checker to catch grammar, spelling, punctuation, and style issues instantly.

Available on: icon icon icon icon icon icon icon icon