Your text
Nothing uploadedRuns locally in your browser

Coleman–Liau Guide — CLI Formula, Grade Level & Letter-Based Readability

Coleman–Liau Index (CLI) is a letter-based readability score that maps text to a U.S. school grade level. It uses letters per 100 words and sentences per 100 words — not syllables. Below: grade bands, the CLI formula, when to choose it over Flesch, and how to edit toward plain-language targets.

What Is the Coleman–Liau Index?

Coleman–Liau Index is a readability formula that outputs a U.S. grade level. A score of 8 means the text reads like material for an average 8th grader. A higher score means harder reading.

Why it matters: Teams need one number to compare drafts, textbooks, and public-facing copy without debating subjective “clarity.”

Example: A patient FAQ at CLI 7 targets middle-school plain language. A legal brief at CLI 16 targets graduate-level density.

Common mistake: Treating CLI as a quality grade on your ideas. It only measures average word length and sentence length patterns.

Character-based vs syllable-based readability

Most classic readability scores count syllables per word. Coleman–Liau counts letters per word instead. Computers count letters reliably; syllable rules vary by word and dialect.

Why it matters: Technical terms, product names, and identifiers often fool syllable counters. Letter counts stay stable for automation.

Example: The identifier getUserById has few syllables but many letters — CLI reflects the longer tokens syllable formulas may under-weight.

Edge case: CLI is built for English prose. It is not meaningful on raw source code alone.

History

Meri Coleman and T. L. Liau published the formula in 1975 with the U.S. Office of Education to score textbook readability. They designed it for machine tabulation when syllable dictionaries were costly and error-prone.

Edge case: Some older references list an equivalent form using per-word ratios. The constants 0.0588, 0.296, and 15.8 are the standard CLI values used today.

What the Coleman–Liau Score Means

The CLI result is a grade level, not a percentage. Higher numbers mean longer words, longer sentences, or both — on average across the sample.

Why it matters: Editors, teachers, and compliance teams can set a numeric target such as “grade 8 or below” and audit copy against it.

Example: CLI 10 suggests high-school level reading — common for mainstream journalism.

Common mistake: Expecting CLI to match every reader’s real comprehension. Topic difficulty and prior knowledge still matter.

Grade level bands

CLI scoreSchool levelTypical content
5 and belowElementaryVery plain instructions, young readers
6–7Middle schoolHealth leaflets, simple how-to guides
8–10Upper middle / high schoolGeneral web articles, marketing, conversational English
11–12High school graduateNews analysis, detailed product docs
13–16CollegeTechnical manuals, academic prose
17+Graduate / professionalLegal contracts, dense research writing

Edge case: Very short samples swing between bands when you add or remove one long word. Use at least 100 words; many style guides prefer 300+ for audits.

How the Coleman–Liau Index Is Calculated

CLI uses two averages scaled to “per 100 words,” then applies fixed constants. You need word count, sentence count, and letter count.

Why it matters: Once you know L and S, you know whether to edit vocabulary or sentence length first.

Example: In a 100-word passage, 12 sentences gives S = 12. If those words contain 520 letters, L = 520.

Common mistake: Mixing formulas from different sites. Constants and letter rules must match your checker.

L and S variables

L = average letters per 100 words = (total letters ÷ total words) × 100. S = average sentences per 100 words = (total sentences ÷ total words) × 100.

Why it matters: L is usually a much bigger number than S (often 400–600 vs 10–20). That is why word length moves CLI more than sentence count, even though the S multiplier is larger.

Edge case: Lists without terminal punctuation may count as one sentence in some tools. Stay consistent when comparing drafts.

The formula

CLI = 0.0588 × L − 0.296 × S − 15.8

TextTools uses the same constants and letter-count rules as standard CLI implementations. Higher CLI = harder reading.

Edge case: Text with zero sentences cannot produce a score. Add at least one sentence break.

Letters, Characters, and Counting Rules

CLI depends on how “letters” are counted. That is not the same as every character in a Unicode string. Spaces, punctuation, and most symbols are excluded from L.

Why it matters: Two checkers can disagree if one counts all characters and the other counts letters plus digits only.

Example: In TextTools, letters are Unicode letter characters plus digits (A–Z, a–z, 0–9, and letters from other scripts). Hyphens and apostrophes inside words are not letters.

Common mistake: Pasting HTML or Markdown and expecting CLI to ignore tags. Markup characters can inflate counts if left in the draft.

Unicode and letter counting

Unicode is the character encoding system modern text uses. UTF-8 is the storage format browsers and files use for that text. CLI does not measure bytes — it measures how many letter symbols appear in words.

Why it matters: Accented letters (é, ñ) usually count as one letter each. Emoji and icons typically do not count as letters, but they still add words or punctuation noise if mixed into prose.

Example: “café” contributes four letters to L in most Latin-script counters. A lone 😀 emoji adds no letters but may sit in its own “word” token depending on spacing.

Edge case: URLs and version numbers (v2.4.1) add digits to L. Strip boilerplate when scoring marketing copy meant for humans.

Pair letter totals with the character counter and average word length tool when you need both symbol counts and CLI inputs.

What Is a Good Coleman–Liau Score?

Targets depend on audience and genre. Public web copy usually lands between CLI 8 and 10. Marketing often aims lower. Technical docs accept higher scores when jargon is required.

Why it matters: A shared target prevents endless rewrites and aligns writers, legal, and SEO teams.

Example: A city services page might require CLI ≤ 8. An API reference might accept CLI 12–14 if terms cannot be simplified.

Common mistake: Chasing CLI 5 on expert content. Oversimplification can hide necessary precision.

Common targets by content type

Content typeTypical CLI
Marketing / email6–8
General web / blog8–10
Government plain languageAbout 8
Technical documentation12–16
Academic / legal14+

When to Use Coleman–Liau

Choose CLI when you need automated, repeatable grade levels without syllable dictionaries. It fits CMS pipelines, developer docs, and cross-checks against syllable-based scores.

Why it matters: The right formula saves editing time. CLI wins on token-heavy prose; SMOG wins when polysyllabic jargon is the main risk.

Example: A content platform scoring 10,000 pages per night often prefers CLI because letter counts are fast and deterministic.

Common mistake: Using CLI alone on healthcare leaflets where SMOG is the industry norm. Run both when stakes are high.

Strong use cases

  • Technical and API documentation with identifiers and acronyms.
  • Educational publishing and textbook leveling.
  • Machine-driven content review in CMS or marketing ops.
  • Sanity checks when Flesch–Kincaid looks wrong on unusual vocabulary.
  • Localized English variants where syllable heuristics drift.
  • Medical, legal, and educational documents that need a repeatable grade audit.

How to Improve Your Coleman–Liau Score

To lower CLI (easier reading), shorten words first, then shorten sentences. The L term dominates most edits.

Why it matters: Splitting one long sentence helps less than replacing “utilization” with “use” across a page.

Example: Cutting average word length from 5.0 to 4.0 letters per word can drop CLI by several grade levels on a medium article.

Common mistake: Chopping sentences until the rhythm sounds robotic. Keep natural flow while swapping vocabulary.

Practical editing tips

  • Replace long words with shorter synonyms that keep the same meaning.
  • Split sentences that carry more than one main idea.
  • Prefer active voice and drop filler phrases.
  • Define acronyms once, then use the short form.
  • Score a clean plain-text paste without markup or navigation chrome.

Coleman–Liau vs Other Readability Formulas

No single score captures all clarity. CLI complements syllable-based formulas and fog-style complex-word metrics.

Why it matters: If CLI and Flesch–Kincaid disagree, unusual word shapes are often the cause — CLI is the tie-breaker for automation.

Example: Short words with many syllables ( “area” vs “territory”) move Flesch and CLI in different directions.

Common mistake: Publishing only the formula that flatters the draft. Pick the metric your style guide or regulator requires.

Quick comparison

FormulaMain inputsBest for
Coleman–Liau (CLI)Letters + sentences per 100 wordsAutomation, technical prose, CMS scoring
Flesch–KincaidSyllables + sentence lengthGeneral prose, classrooms, Word processors
Automated Readability Index (ARI)Characters + sentence lengthCharacter-based grade level; weights sentences more
SMOGPolysyllabic wordsHealth and education material
Gunning FogComplex words + sentencesBusiness writing, journalism

Edge case: ARI and CLI both use character-like inputs but weight sentence length differently — expect divergence on long sentences with short words.

Limitations of Coleman–Liau

CLI measures averages, not whether a reader already knows the topic. It was standardized for English and may mis-rank other languages if you treat the grade literally.

Why it matters: Honest limits build trust. Use CLI as one signal among editing, user testing, and subject-matter review.

Example: A medical pamphlet with short but unfamiliar drug names may score “easy” while still confusing patients.

Common mistake: Scoring raw code, JSON, or log dumps. CLI targets human prose, not programming syntax.

Edge case: Technical text with many short tokens can score lower than readers expect. Long but familiar words can score higher than the real difficulty.

Worked Examples

Small edits change CLI quickly when they remove letters from high-frequency words.

Why it matters: Numeric intuition beats memorizing constants.

Before and after

Before (dense): “The organization will utilize approximately seven methodologies to facilitate comprehension of the aforementioned policy modifications.”

Profile: long words, one sentence, high L — elevated CLI.

After (plain): “We will use about seven methods to help you understand the policy changes.”

Profile: shorter tokens, clearer sentence — lower CLI.

Common mistake: Expecting identical CLI across tools on a three-sentence sample. Use 100+ words before trusting the band.

When the L term dominates

Replacing “implementation” with “setup” removes letters without changing sentence count. On a 500-word page, that swap alone can lower CLI by a full grade point or more.

Edge case: Required proper nouns (World Health Organization) add letters you cannot remove — score surrounding prose separately when possible.

Frequently Asked Questions

What is the Coleman–Liau Index?

A readability score that estimates the U.S. school grade needed to understand a text using letter and sentence counts, not syllables.

How is the Coleman–Liau Index calculated?

CLI = 0.0588L − 0.296S − 15.8, where L is letters per 100 words and S is sentences per 100 words.

What do L and S mean in the formula?

L is average letters per 100 words. S is average sentences per 100 words. Both scale word length and sentence length to a fixed formula.

Does Coleman–Liau use syllables?

No. It uses letters per word and sentences per 100 words. That is why it suits automated scoring.

What is a good Coleman–Liau score?

For general web copy, aim for CLI 8–10. Marketing often targets 6–8. Technical docs may sit at 12–16 when jargon is required.

What grade level should web content target?

Many public sites aim for grade 8–10. Government plain-language work often targets grade 8 or below.

How do I lower my Coleman–Liau score?

Use shorter words first. Then shorten sentences. Cut filler and prefer common vocabulary.

Why does word length matter more than sentence length?

The L term (0.0588 × letters per 100 words) usually moves CLI faster than the S term. Shortening vocabulary beats minor sentence trims.

Coleman–Liau vs Flesch–Kincaid — when should I use which?

Use Flesch for general prose and classrooms. Use CLI when syllable counts are unreliable or you need fast automation on technical text.

Coleman–Liau vs ARI — what is the difference?

Both use character-like inputs. ARI weights sentence length more aggressively. CLI uses the 0.0588L − 0.296S − 15.8 constants from Coleman and Liau (1975).

Is Coleman–Liau accurate for technical writing?

Often more stable than syllable tools on identifiers and jargon, but it still measures length patterns — not whether terms are familiar to readers.

Does Coleman–Liau work on code?

Not meaningfully. Score human prose around code samples, not the source code itself.

How many words do I need for a stable score?

Use at least 100 words. Textbook audits often use 300+ words for a steady grade level.

Are letters and characters counted the same way?

No. CLI uses letters (and digits in TextTools), not spaces or punctuation. Total character count is a different metric.

Is Coleman–Liau reliable for non-English text?

It was built for English. You can compare two drafts in another language, but the grade number may not match local schooling.

Who created the Coleman–Liau Index?

Meri Coleman and T. L. Liau published the formula in 1975 for U.S. textbook readability and machine scoring.

Why do two Coleman–Liau calculators show different scores?

Different letter rules, sentence splits, and rounding cause small gaps. Compare bands on the same tool when auditing drafts.

Coleman–Liau vs SMOG — when should I use which?

Use CLI for automation and technical prose. Use SMOG when long words matter most, such as health material.