Skip to content

Degree-Thesis Writing Philosophy

“A thesis is not a pile of experiments; it is an academic story with a clear contribution.” - adapted from Neel Nanda

Contents

Narrative Principle

(Core idea)

A degree thesis tells a story around one explicit research contribution.

Three pillars (must be clear before the introduction ends):

PillarDescriptionExample
What was done1-3 concrete innovations“This thesis proposes method X and achieves Z under condition Y”
Why it is credibleRigorous experimental evidenceSufficient baseline comparisons and ablation studies
Why it mattersWhy readers should careConnection to a recognized problem in the field

If you cannot state the contribution in one sentence, the thesis is not yet whole.

Five-Sentence Abstract Formula

(Adapted from Sebastian Farquhar, DeepMind)

  1. Core result (“This thesis proposes...”, “This thesis demonstrates...”)
  2. Why the problem is difficult and important
  3. Method, including key terms for searchability
  4. Experimental evidence
  5. Most important quantitative result

Delete generic openings such as “With the rapid development of deep learning...”

Seven Reader-Expectation Principles

(Adapted from Gopen & Swan)

#PrincipleRuleExample
1Subject-verb proximityKeep subject and predicate close❌ “The method proposed in this thesis based on..., achieved” -> ✅ “The proposed method achieved...”
2Stress at the endPut sentence focus last✅ “Through attention, accuracy increased by 15%
3Old information firstKnown information first, new information later✅ “Based on the analysis above, this thesis proposes...”
4One idea per paragraphOne point in each paragraphSplit multi-point paragraphs
5Use verbs for actionsAvoid nominalization❌ “performed an analysis” -> ✅ “analyzed”
6Context before displayExplain before presenting a formulaState the meaning before the formula
7Explicit transitionsUse signals between paragraphs“therefore,” “however,” “in addition”

Precise Wording

(Adapted from Zachary Lipton)

Be Specific

  • ❌ “performance” -> ✅ “accuracy,” “inference latency”
  • ❌ “significant” -> ✅ “statistically significant (p < 0.05)” or delete it

Remove Ambiguity

  • ❌ “may help improve” -> ✅ “accuracy increased by 3.2%”

Avoid Empty Phrases

Delete: obviously, undoubtedly, as everyone knows, undeniably

Precision First

(Adapted from Jacob Steinhardt, UC Berkeley)

  • Terminology consistency: use one term for one concept throughout
  • Explicit assumptions: list every assumption before a theorem
  • Intuition + rigor: pair intuitive explanation with formal proof
  • Define before use: define every symbol and term before first use

Micro-Writing Techniques

(Adapted from Ethan Perez, Anthropic)

  • [ ] Avoid vague reference: ❌ “This shows...” -> ✅ “The experiment shows...”
  • [ ] Move verbs forward: keep the predicate near the sentence opening
  • [ ] Delete fillers: actually, to some extent, quite, relatively, basically
  • [ ] Active voice: ❌ “The method was applied to” -> ✅ “This thesis applies the method to”
  • [ ] Quantify: ❌ “large improvement” -> ✅ “improved by 12.3%”

Section-Specific Guide

SectionSuggested LengthCore Requirement
Abstract300-500 Chinese charactersFive-sentence formula; remove generic opening
Introduction3-5 pagesBackground -> problem -> contribution list -> organization
Literature review5-10 pagesGroup by theme; discuss each work's contribution and limitation; no more than 2 parallel citations in one sentence
MethodsAs neededEnsure reproducibility; list every hyperparameter
ExperimentsMain bodyState which claim each experiment validates; include error analysis
Conclusion and outlook1-2 pagesAnswer research question; actionable future work

Introduction Must Include:

  • Clear research-question statement
  • 2-4 contributions, each no more than 1-2 lines
  • Brief method overview
  • Chapter organization
  • Citation integration: every cited work must include a brief description of its contribution, method, or limitation; never stack 3 or more citations in one sentence without analysis (see guide.md category 6)

Experiments Must Include:

  • Specific claim validated by each experiment
  • Error analysis (standard deviation vs standard error)
  • Hyperparameter search range
  • Computing resources (GPU model, total duration)

Time Allocation

Spend approximately equal time on:

  1. Abstract
  2. Introduction
  3. Figures and tables
  4. All other content combined

Reason: most reviewers form a judgment before reading the method chapters.

Reader order: title -> abstract -> introduction -> figures/tables -> perhaps the rest.

Revision Order (Logic -> Sentence -> Vocabulary; Irreversible)

When polishing takes several passes, follow this order and never reverse it:

  1. Argument / logic: paragraph order, repeated/missing main ideas, chapter transitions.
  2. Sentence structure: split very long sentences, passive to active, move information-dense components forward.
  3. Vocabulary / typesetting: AI-frequency terms, number/unit format, terminology/abbreviation consistency.

Why fixed: if wording is polished first (Layer 3), a Layer 1 change may delete or merge that paragraph, wasting the work. Coarse-to-fine revision is several times more efficient.

Sources

SourceCore Contribution
Neel Nanda (Google DeepMind)Narrative principle
Sebastian Farquhar (DeepMind)Five-sentence abstract formula
Gopen & SwanSeven reader-expectation principles
Zachary LiptonPrecise wording
Jacob Steinhardt (UC Berkeley)Precision
Ethan Perez (Anthropic)Micro-writing techniques

Released under the MIT License.