Summary and Revision Notes
Use these notes to review Chapter 1 quickly.
Core Ideas
| Idea | Meaning | Check yourself |
|---|---|---|
| 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? |
| 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
| Notation | Read as | Meaning |
|---|---|---|
| x | a named quantity | |
| f of x | the output of function at input | |
| a is in A | membership in a set | |
| x sub i | the i-th item of | |
| sum from i equals 1 to n of x sub i | add the items | |
| product from i equals 1 to n of x sub i | multiply the items |
Common Mistakes
- Reading as multiplication.
- Forgetting that mathematical indexing often starts at 1.
- Treating a set as ordered.
- 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.
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.