Organizing Information
1.1 Organizing Information
🧭 Overview
🧠 One-sentence thesis
Organizing information by explicitly specifying the order of variables transforms ambiguous columns of numbers into unambiguous function inputs, making functions of several variables tractable.
📌 Key points (3–5)
- The ambiguity problem: a column of numbers like (1 2 3) has no meaning until we specify which variable each position represents.
- How ordering solves it: writing the function itself as an ordered tuple (e.g., (24 80 35)) and labeling the input order (e.g., subscript B) removes all ambiguity.
- Same numbers, different meanings: the identical column (1 2 3) can produce completely different outputs (334 vs 264) depending on the chosen order.
- Common confusion: don't confuse the function notation with the input—changing the variable order changes both the function's notation and how inputs are interpreted.
- Why it matters: explicit ordering is essential for readers to understand what is written and is a way of organizing information for linear algebra.
🧩 The ambiguity of unordered inputs
🧩 Why a column of numbers is not enough
- The excerpt asks: what is V(1 2 3)?
- Without knowing the order of variables, we cannot compute an output.
- The column could mean:
- 1 share of Google, 2 of Netflix, 3 of Apple, or
- 1 share of Netflix, 2 of Google, 3 of Apple, or
- any other permutation.
- Do we multiply the first number by 24 or by 35? No one has specified.
📝 The tedious alternative
- We could write "1 share of Google, 2 shares of Netflix, and 3 shares of Apple" every time.
- The excerpt calls this "unacceptably tedious."
- The goal: use ordered triples of numbers to concisely describe inputs—but only if we make the order explicit.
🔢 Notation that encodes order
🔢 Writing the function as an ordered tuple
The function V itself can be denoted as an ordered triple of numbers that reminds us what to do to each number from the input.
- Instead of writing V(x, y) = 3x + 5y in one line, we can write V as a tuple that matches the chosen variable order.
- Example from the excerpt: if the order is (Google, Apple, Netflix), write V as (24 80 35).
🏷️ Subscripts to label the order
- The excerpt uses subscripts like B and B′ to name different orderings.
- These subscripts are "just symbols" but the distinction is critical.
- The same column of numbers with different subscripts represents different inputs.
| Notation | Order chosen | Interpretation of (1 2 3) | Calculation | Output |
|---|---|---|---|---|
| V(1 2 3)_B | (G A N) | 1 share G, 2 shares A, 3 shares N | 24(1) + 80(2) + 35(3) | 334 |
| V(1 2 3)_B′ | (N A G) | 1 share N, 2 shares A, 3 shares G | 35(1) + 80(2) + 24(3) | 264 |
- Don't confuse: the column (1 2 3) looks identical, but the subscript changes its meaning entirely.
📊 Example: stock portfolio value
📊 The setup
- You own stock in three companies: Google, Netflix, and Apple.
- The value V of your portfolio depends on the number of shares you own: s_N, s_G, s_A.
- The formula is: 24s_G + 80s_A + 35s_N.
📊 Applying the ordering system
- Order B = (G A N):
- Write V as (24 80 35).
- Input (1 2 3)_B means s_G=1, s_A=2, s_N=3.
- Compute: 24(1) + 80(2) + 35(3) = 334.
- Order B′ = (N A G):
- Write V as (35 80 24).
- Input (1 2 3)_B′ means s_N=1, s_A=2, s_G=3.
- Compute: 35(1) + 80(2) + 24(3) = 264.
- The excerpt emphasizes: "V assigns completely different numbers to the same columns of numbers with different subscripts."
🔄 Six possible orderings
- There are six different ways to order three companies.
- Each way gives:
- Different notation for the same function V.
- A different way of assigning numbers to columns of three numbers.
- It is critical to make clear which ordering is used if the reader is to understand what is written.
🎯 Why this matters
🎯 Organizing information
- The excerpt states: "Doing so is a way of organizing information."
- Explicit ordering transforms ambiguous data into unambiguous function inputs.
- This is the foundation for making "problems involving linear functions of many variables easy (or at least tractable)."
🎯 Hint at a central idea
- The excerpt notes that the symbols B and B′ were chosen "because we are hinting at a central idea in the course: choosing a basis."
- The subscripts are not arbitrary—they foreshadow a key concept in linear algebra.