Inverse Function

Context: FIT1058_MOC Β· reverses a function Β· exists only for a bijection Β· undoes/redoes via Function Composition

Quick Revision

  • 🎯 Objective: run a function backwards: given , return the that produced it βž” the unique preimage.
  • πŸ“¦ Core Components: swap graph pairs βž” , .
  • ⚑ Key Constraint: exists iff is a bijection (injective β†’ uniqueness, surjective β†’ existence).

πŸ“ Core

1. The Inverse (Reverse the Map)

  • Definition βž” = the unique with .
  • Requires βž” every has exactly one preimage ⟹ a bijection.
  • Graph βž” swap each pair: .

2. Cancellation

  • Both ways βž” , .
  • Composition βž” , .

3. Why Bijectivity

  • Injective βž” removes non-uniqueness (several inputs share an output).
  • Surjective βž” removes non-existence (some value never produced).
  • Both βž” each has one and only one preimage.

Key identities:

βš–οΈ Core Decision Matrix

ObstacleBlocked byEnsures
several inputs share outputinjectivityuniqueness
some value never producedsurjectivityexistence
both removedbijectivity is a function
non-bijective β€”only an inverse relation

When It Flips: encryption must be bijective so decryption exists (Cryptosystem); on has no inverse (not injective, not surjective). is itself a bijection .

πŸ“Š Exam Execution Trace

Manual Execution Trace

:

Step / StatePair of Swapped ()Check
0 (Init)β€”β€”β€”
1
2
3

⚠️ Common Mistakes

  • πŸ’‘ Inverse relation always exists βž” swapping pairs works for any relation; it’s a function only if was bijective (else not single-valued or not total).

🧠 Active Recall