This commit is contained in:
Alexander 2025-06-10 13:15:24 -04:00
parent 864544624c
commit a3e82f34b5
246 changed files with 4433 additions and 2 deletions

View file

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
Reading Order of The Culture
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/index.css">
<link rel="icon" type="image/png" href="/assets/favicon.png">
<script>
const class_ = `font-${window.devicePixelRatio >= 1.3 ? 'hidpi' : 'lodpi'}`;
document.documentElement.className = class_;
</script>
<meta name="generator" content="soupault">
</head>
<body>
<main class="container">
<section id="Reading-Order-of-The-Culture">
<h1>
Reading Order of The Culture
</h1>
<p>
Ive generated a dependency graph for the Culture series reading order. The idea is that if theres an arrow from book A to book B, then to get the most possible enjoyment from either A or B, A should be read before B.
</p>
<p>
<img alt="A dependency graph diagram of what Culture books must eb read before what others." src="/culture.dot.png"> Above is the graph, and <a href="/culture.dot.txt">right here</a> is the vizgraph description file that lists my rationale for each dependency.
</p>
<ul>
<li>
<em>Consider Phlebas</em> before <em>Look to Windward</em>— both are about the Idiran War.
</li>
<li>
<em>Use of Weapons</em> before <em>The State of the Art</em>— these share a main character in Diziet Sma. SotA was actually released before UoW but is more satisfying if read after it, in my opinion (and the authors, for what thats worth).
</li>
<li>
<em>Use of Weapons</em> before <em>Inversions</em>— UoW gives the best idea of any book about what Special Circumstances is, which must be understood to fully appreciate Inversions in all its subtlety.
</li>
<li>
<em>Excession</em> before <em>The Hydrogen Sonata</em>— Hydrogen Sonata is dual to Excession in many ways that cant be explained here without abject spoilage. This one is not a hard rule, but HS is better if you know Excession.
</li>
<li>
<em>Excession</em> before <em>Matter</em>— GSV Sleeper Service is mentioned in Matter as “The granddaddy, the exemplary hero figure, the very God…”, referencing events in Excession.
</li>
<li>
<em>Use of Weapons</em> before <em>Surface Detail</em>— you must know who Zakalwe is, the main character of UoW, to fully appreciate the ending of Surface Detail.
</li>
<li>
<em>Look to Windward</em> before <em>Surface Detail</em>— These book deal with some common themes and subjects. Some will disagree with me here, but LtW is more impactful <em>without</em> certain knowledge revealed in Surface Detail.
</li>
</ul>
<p>
Assuming one agrees with the graph, the set of ideal reading orders (that is, the set such that for all orders it contains, no order exists which is strictly better) is the set of <a href="https://en.wikipedia.org/wiki/Topological_sortinghttps://en.wikipedia.org/wiki/Topological_sorting">topological sorts</a> of the graph.
</p>
<p>
This gives the number of possible ideal orders as 63840. Thats a lot of good ways to do it!
</p>
</section>
</main>
</body>
</html>