Review
Use these notes to review Chapter 1 quickly.
Core Ideas
Use each idea as a reading move:
- Notation: compressed language. Can you expand it into words?
- Variable: name for a quantity. Can you say what value or object it names?
- Expression: recipe for computing a value. Can you substitute a small input?
- Function: reusable input-output rule. Can you identify input, rule, and output?
- Set: collection of distinct objects. Can you test membership?
- Interval: continuous number range. Can you tell which endpoints belong?
- Tuple: ordered collection. Can you explain why order matters?
- Index: position selector. Can you tell whether indexing starts at 0 or 1?
- Summation: repeated addition. Can you expand it for three terms?
- Product: repeated multiplication. Can you expand it for three terms?
Key Notation
Read notation in complete phrases:
- : "x"; a named quantity.
- : "f of x"; the output of function at input .
- : "a is in A"; membership in a set.
- : numbers from up to ; include and exclude .
- : "x sub i"; the i-th item of .
- : "sum x sub i from i equals 1 to n"; add the items.
- : "product of x sub i from i equals 1 to n"; multiply the items.
- : "one over n times the sum of ell sub i from i equals 1 to n"; average the losses.
Greek letters are names too. Saying "theta" or "lambda" is only the first step; the important question is what that symbol represents in the formula.
Mistakes to Catch
- Reading as multiplication.
- Forgetting that mathematical indexing often starts at 1.
- Treating a set as ordered.
- Ignoring whether interval endpoints are included.
- Treating a tuple as unordered.
- Memorizing symbol names without reading what the symbols do.
- Moving past a formula before saying it in words.
Small Tests
Try these without looking back:
- If , what is ?
- If , is ?
- If , what is in mathematical indexing?
- Expand .
- Say in words.
- In , which endpoint belongs to the interval?
If these feel unclear, return to the matching topic page. Do not rush into vectors while the notation still feels opaque.
If You Feel Lost
Return to a small example.
For a formula with a sum, use three values. For a function, plug in one number. For a set, write three members. The small case reveals the idea.
Bridge to Vectors
Vectors use this chapter immediately.
When you see
read it as:
v is an ordered pair
v_1 is the first coordinate
v_2 is the second coordinate
That is enough to begin.