Sequence (Mathematics)

Context: FIT1058_MOC Β· an ordered list, formalised as a function on Β· contrast with an unordered set Β· the home of recurrences, limits and growth analysis

Quick Revision

  • 🎯 Objective: an ordered list = a function on βž” -th term .
  • πŸ“¦ Core Components: ordered + may repeat βž” closed form vs recurrence.
  • ⚑ Key Constraint: must be pinned by a rule, not an informal ""; contrast the unordered set.

πŸ“ Core

1. The Definition

  • Sequence βž” a function (infinite) or (finite).
  • -th term βž” ; number sequence when is a number set.
  • Length βž” size of a finite sequence’s domain.

2. Sequence vs Set

  • Set βž” unordered, no repetition.
  • Sequence βž” ordered, may repeat ().
  • Finite sequence βž” an -tuple; a string is a sequence of letters.

3. Defining a Sequence

  • Not an "" list βž” only suggests a pattern.
  • Closed form βž” in alone ().
  • Recurrence βž” from earlier terms + base case(s).

Key identities:

βš–οΈ Core Decision Matrix

FeatureSequenceSet
ordermattersirrelevant
repetitionallowednone
formalismfunction on collection
finite form-tupleβ€”

When It Flips: sequences are fundamental to computation β€” memory is laid out in order, and time-vs-input-size is the sequence Big-O Notation analyses. Closed form gives any term in one step; a recurrence is often more natural but hides growth until unrolled.

πŸ“Š Exam Execution Trace

Applied Exercise

Problem: List the first five terms of and state domain/codomain. Derivation Proof / Hand-Calculation Walkthrough:

Final Extracted Output: an infinite sequence (function on ); repetition allowed but here all distinct.

⚠️ Common Mistakes

  • πŸ’‘ "" is not a definition βž” many sequences share any finite prefix; pin it with a closed form or a recurrence + base case.

🧠 Active Recall