How to Read This Book
8 components, 3 depth layers, 75 chapters — a user manual.
Prerequisites
What you'll learn here
- Recognize the 8-component chapter anatomy and what to look for in each part
- Pick the depth layer (L1 / L2 / L3) that matches your background
- Explain how quiz scoring and progress tracking work
- Know where progress is stored and how to reset it
Hook: The Promise of This Book
This is not a reference; it’s a textbook. In a reference you list files, search examples, walk away. In a textbook you sit down, and you don’t skip ahead. For 75 chapters I’m asking the same of you — but you’re allowed to pause, skip, retry. Our deal:
I’ll put the same skeleton in every single chapter. You trust that skeleton and focus on the content.
That’s it. Let’s walk through the skeleton together.
Intuition: Every Chapter Is a Copy of a Lesson
Every chapter has 8 parts. You don’t need to memorize their names — they show up in the same order in the next chapter, and the one after. Like walking through a familiar neighborhood: after a while you stop tracking each house and internalize the route.
| Emoji | Name | Your job there |
|---|---|---|
| 🪝 | Hook | Read. One paragraph, maybe two. I try to settle the “why do I care?” here. |
| 🧭 | Intuition | Look. Analogy, diagram, animation. No formulas; just the feel of what’s happening. |
| 📐 | Formalism | Understand. Where the math enters. L1/L2/L3 layers provide different depths. |
| 🧪 | Experiment | Play. Move sliders, press buttons, change numbers, verify with your own eyes. |
| 📝 | Quiz | Test. 3-7 questions. First attempt counts. Wrong answer → explanation, try again. |
| 🛠️ | Lab | Build. Paper-and-pencil, small code, conceptual design — a “make it” task. |
| 🗂️ | Cheat Sheet | Keep. One-page summary. Print and pin to your desk. |
| 📚 | Further Reading | Go. Next-chapter bridge, academic sources, repo reference. |
Formalism: 3 Depth Layers
L1 — Intro (green): High-school level. Math = +−×÷ and %. We tell you the story; formulas are there to show the big picture. All L1 blocks carry a green left border.
L2 — Full (yellow): Undergrad engineering, years 1-3. You’re comfortable with derivatives, integrals, linear algebra. This is where formula derivations, circuit analyses, “why is this equation this way” happen. L2 blocks have yellow borders. Primary audience lives here.
L3 — Deep (red): Grad / expert. Fourier, quantum mechanics, transformer architecture, tensor analysis. Academic references, design-decision justifications, scaling limits. L3 blocks have red borders. Skipping is fine — L2 is enough for most readers.
Important: Layers are not forced on you. All three appear on the page; you focus on the one that matches you. A toggle is planned; for now, skim and read the one closest to your background. If a layer is too hard, drop down one level.
Experiment: Track Your Own Progress
Did you notice the little green ✓ marks next to chapter names in the sidebar? Those are your completed chapters.
How is progress recorded?
- Every chapter ends with a quiz. If on your first attempt you get more than half right, the chapter is auto-marked complete.
- The record lives only in your browser (
localStorage). Not on a server. A different computer means a fresh slate. - To reset, in your browser’s dev console:
localStorage.removeItem('sidra-atolye.progress'); location.reload();How is the quiz scored?
- Your first answer on each question is scored. If you click “Try again” the score doesn’t change — the chapter should be re-read.
- Pass threshold: more than half correct. For a 4-question quiz, 3 correct. For 7, 4.
- If you don’t pass, no penalty — a message tells you to re-read. The whole quiz can be redone at any time.
Quiz
Lab Task: Build Your Own Reading Plan
In a notebook or app, fill this in:
- My level: L1 / L2 / L3? (Be honest — this book was written for all three.)
- Weekly hours I can commit: 2h / 5h / 10h?
- My priority:
- (a) My physics + chemistry is weak → start with Modules 1-2.
- (b) I’m curious about hardware → fast track 0 → 5.
- (c) I’ll be on the software team → 0 → 5 → 6.
- (d) Fabrication side → 0 → 2 → 7.
- Next chapter: 0.3 (Self-Assessment) — don’t skip without answering those.
When ready, click “Next chapter” at the bottom.
Cheat Sheet
- 8 components: 🪝 Hook → 🧭 Intuition → 📐 Formalism → 🧪 Experiment → 📝 Quiz → 🛠️ Lab → 🗂️ Cheat Sheet → 📚 Further Reading.
- 3 layers: 🟢 L1 (high school) · 🟡 L2 (undergrad) · 🔴 L3 (advanced). Same page, color-coded.
- Progress: Quiz threshold = more than half correct. Stored in
localStorage, no account. - Reset:
localStorage.removeItem('sidra-atolye.progress')→ reload. - Is this book linear? No. Module 0 → Module 5 can skip the science (quick hardware track); but skipping Modules 1-2-3-4 means the hardware chapters won’t answer “why?” questions. Pick a route.
Further Reading
- Next chapter: 0.3 — Where Am I? — Self-Assessment
- Reference: This book’s source —
sidra-atolye/folder, Astro + MDX. - Pedagogy: Carl Wieman, Physics for the 21st Century — active-learning principles.