Week 10: Graphs, Trees, and Matrices

171 words
1 min read
Maths Week 1: the start of the relation ladder
Visual companion
Maths
Sets and relations

Maths Week 1: the start of the relation ladder

View
Revision summary

What this note is really saying

Short form

# Week 10: Graphs, Trees, and Matrices > **Course:** Jan 2026 - Mathematics I > **Focus:** Graph theory basics and the data structures that naturally appear with it. --- ## 1.

Visual strip

Relevant recall pieces for this note

Open gallery

Week 10: Graphs, Trees, and Matrices

Course: Jan 2026 - Mathematics I Focus: Graph theory basics and the data structures that naturally appear with it.

1. Core idea

Week 10 is about encoding graph structure and reading graph behavior from degrees, matrices, and traversal order.

What to remember

  • In a simple graph, the adjacency matrix has zeros on the diagonal.
  • Maximum non-zero entries happen when every possible edge exists.
  • A BFS tree reveals layers from the root.
  • A stack fits depth-first backtracking.
  • A queue fits breadth-first exploration.

2. Common traps

  • Counting matrix entries without respecting symmetry.
  • Mixing up BFS and DFS behavior.
  • Treating a valid degree sequence as if every ordering were valid.

3. Speedrun pattern

When you see a Week 10 question, ask:
  1. Is this asking about representation or traversal?
  2. What graph invariant is being tested?
  3. Which data structure matches the process?

Assignment anchor

Document Outline
Table of Contents
System Normal // Awaiting Context

Intelligence Hub

Navigate the knowledge graph to generate context. The Hub adapts dynamically to surface backlinks, related notes, and metadata insights.