Quiz 2
Registry Synced

Mathematics I · Week 5 — Functions & composition

1280 words
6 min read
2026-08-16

Reading compass

Now · Week map

Week 5 — functions & composition

Quiz 2 scope: Weeks 1–8 per IITM May 2026 foundation courses. Source baseline: IITM BS admissions important-dates calendar · May 2026 cycle. Times on assessments are operational conventions — verify hall ticket.

Week map

Function tests → composition order → inverse swap → exponential growth/decay

Classify → Represent → Execute → Trap-check

  • Recognize: Ask: Which test checks if a graph is a function?
  • Procedure: Write f(g(x))f(g(x)) by substituting entire g(x)g(x) into ff. Simplify stepwise; watch parentheses when replacing xx. Domain excludes values that break inside function.
  • Variations / traps: Watch for: Writing fgf \circ g as f(x)g(x)f(x) \cdot g(x).

Formula chain (compressed)

domain/range → (f∘g)(x)=f(g(x)) → inverse swaps x↔y → exp growth vs decay.
  1. Composition(f∘g)(x) = f(g(x)) — inside-out evaluation order
  2. Inversef⁻¹(f(x))=x on domain — one-to-one functions only
  3. Horizontal line testno horizontal hits twice — invertible on interval
  4. Exponentialf(x)=a^x, a>0, a≠1 — growth (a>1) vs decay (0<a<1)
  5. Domain of compositex ∈ dom(g) and g(x) ∈ dom(f) — before plugging in

Deep study

Mathematics I · Week 5 — Composition, inverse, and exponentials

Deep study for Quiz 2 week 5. Master composition order first, then invertibility, then exponential growth rules.

Week map

Vertical/horizontal line tests → composition (fg)(f \circ g) → inverse f1f^{-1} → exponential axa^x → domain discipline throughout.

Composition notation

  • (fg)(x)(f \circ g)(x) → “ff composed with gg at xx” → apply gg first, then ff(fg)(x)=f(g(x))(f \circ g)(x) = f(g(x)).
  • f(g(x))f(g(x)) → inner function output becomes outer input → parentheses matter when substituting.
  • Domain of composition → all xx where g(x)g(x) is in domain of ff.
Mini-example: f(x)=2x+1f(x) = 2x + 1, g(x)=x2g(x) = x^2. Then (fg)(3)=f(g(3))=f(9)=19(f \circ g)(3) = f(g(3)) = f(9) = 19. But (gf)(3)=g(f(3))=g(7)=49(g \circ f)(3) = g(f(3)) = g(7) = 49 — order changes the answer.

Vertical and horizontal line tests

  • Vertical line test: graph is a function iff no vertical line hits twice.
  • Horizontal line test: function is injective (one-to-one) iff no horizontal line hits twice — needed for invertible function on its domain.

Inverse notation

  • f1(y)f^{-1}(y) → input that ff sends to yy → not the same as 1/f(x)1/f(x).
  • Inverse swaps roles: if f(a)=bf(a) = b then f1(b)=af^{-1}(b) = a.
  • Domain of f1f^{-1} = range of ff; range of f1f^{-1} = domain of ff.
  • Graph of f1f^{-1} reflects graph of ff over line y=xy = x.
Mini-example: f(x)=3x2f(x) = 3x - 2 on R\mathbb{R}. Swap: x=3y2x = 3y - 2, solve y=x+23y = \frac{x+2}{3}. So f1(x)=x+23f^{-1}(x) = \frac{x+2}{3}. Check: f1(5)=7/3f^{-1}(5) = 7/3 and f(7/3)=5f(7/3) = 5.

Exponential notation

  • y=axy = a^x → exponential with base aaa>0a > 0, a1a \neq 1.
  • a0=1a^0 = 1 for any valid base; am+n=amana^{m+n} = a^m \cdot a^n; (am)n=amn(a^m)^n = a^{mn}.
  • ax>0a^x > 0 always — range is (0,)(0, \infty).
Mini-example: 23=82^3 = 8; 21=1/22^{-1} = 1/2; (1/2)2=1/4(1/2)^2 = 1/4. Base between 0 and 1 gives decay; base >1> 1 gives growth.
Trap: xax^a (power function) vs axa^x (exponential) — variable position differs.

Pattern families

Easy — Evaluate composition

Substitute entire inner expression into outer. Simplify stepwise. Watch signs when replacing xx inside ff.

Medium — Find inverse of linear or simple rational

Swap xx and yy, solve for yy. State domain of inverse explicitly. Verify f(f1(x))=xf(f^{-1}(x)) = x on valid domain.

Hard — Invertibility and restricted domains

Use horizontal line test or monotonicity. Square root and squaring need domain restriction (x0x \geq 0) for bijection. Composition with inverse simplifies to identity only on matched domains.

Worked mini-examples

Example 1 — Composition order.
f(x)=x+4f(x) = x + 4, g(x)=2xg(x) = 2x. (fg)(5)=f(10)=14(f \circ g)(5) = f(10) = 14. (gf)(5)=g(9)=18(g \circ f)(5) = g(9) = 18.
Example 2 — Nested formula.
f(x)=x2+1f(x) = x^2 + 1, g(x)=x3g(x) = x - 3. (fg)(x)=(x3)2+1=x26x+10(f \circ g)(x) = (x-3)^2 + 1 = x^2 - 6x + 10.
Example 3 — Inverse of linear.
f(x)=x12f(x) = \frac{x-1}{2}. Swap: x=y12x = \frac{y-1}{2}2x=y12x = y - 1f1(x)=2x+1f^{-1}(x) = 2x + 1.
Example 4 — Exponential evaluation.
32=93^{2} = 9; 32=1/93^{-2} = 1/9; 31/2=33^{1/2} = \sqrt{3}.
Example 5 — Not invertible without restriction.
f(x)=x2f(x) = x^2 on all R\mathbb{R} fails horizontal line test (f(2)=f(2)=4f(2) = f(-2) = 4). Restrict to x0x \geq 0 to define inverse f1(x)=xf^{-1}(x) = \sqrt{x}.

Traps

  • Writing (fg)(x)(f \circ g)(x) as f(x)g(x)f(x) \cdot g(x).
  • Treating f1f^{-1} as 1/f(x)1/f(x).
  • Taking domain of f1f^{-1} equal to domain of ff.
  • Applying outer function before inner in composition.
  • Confusing exponential base with exponent: 2x2^x vs x2x^2.

Diagnostic (try yourself)

  1. If f(x)=3x1f(x) = 3x - 1 and g(x)=x2g(x) = x^2, find (gf)(2)(g \circ f)(2) and (fg)(2)(f \circ g)(2).
  2. Find f1(x)f^{-1}(x) for f(x)=5x+4f(x) = 5x + 4. What is the domain of f1f^{-1} if domain of ff is R\mathbb{R}?
  3. Is f(x)=xf(x) = |x| injective on R\mathbb{R}? What restriction makes it bijective from R\mathbb{R} to [0,)[0,\infty)?
  4. Simplify (fg)(x)(f \circ g)(x) when f(x)=xf(x) = \sqrt{x} and g(x)=x+5g(x) = x + 5. State the domain of the composition.
  5. Evaluate 232^{3} and 323^{2}. Which is larger? What is 232^{-3}?

ChatGPT prep archive

Archived import for extra depth — complements the notes above, not official IITM material.

Core concepts

  • Vertical line test: function iff no vertical line hits graph twice.
  • Horizontal line test: injective (one-to-one) iff no horizontal line hits twice—needed for invertible function.
  • Composition (fg)(x)=f(g(x))(f \circ g)(x) = f(g(x)): inside function first.
  • Inverse f1f^{-1} swaps domain/range; graph reflection over y=xy=x. Exponential axa^x, a>0a>0, a1a \neq 1.

Notation & vocabulary

SymbolMeaning
fgf \circ gapply gg then ff
f1(y)f^{-1}(y)input that ff sends to yy
y=axy = a^xexponential base aa

Pattern families

Easy — Compose two formulas

Write f(g(x))f(g(x)) by substituting entire g(x)g(x) into ff. Simplify stepwise; watch parentheses when replacing xx. Domain excludes values that break inside function.

Medium — Inverse of linear or simple rational

Swap xx and yy, solve for yy. State domain of inverse as range of original. Verify f(f1(x))=xf(f^{-1}(x))=x on valid domain.

Hard — One-to-one and invertible

Use horizontal line test or monotonicity argument. For restricted domains (e.g. x0x \geq 0), justify injectivity before inverting. Composition with inverse can simplify to identity only on matched domains.
Drill these on the pattern atlas — filter to week 5.

Traps

  • Writing fgf \circ g as f(x)g(x)f(x) \cdot g(x).
  • Inverse notation f1f^{-1} as 1/f1/f.
  • Domain of f1f^{-1} taken as domain of ff.
  • Base of exponential confused with exponent in xax^a.

Retrieval prompts

  1. Which test checks if a graph is a function?
  2. In f(g(x))f(g(x)), which function is applied first?
  3. What is the domain of f1f^{-1} if ff maps [1,5][1,5] to [2,10][2,10]?

Practice loop

  1. Read Deep study (if present) or core concepts once.
  2. Recite the formula chain without looking.
  3. Open one easy pattern on the interactive atlas for week 5.
  4. Attempt without solutions; mark studied after an honest try.
  5. Say one trap aloud before closing the tab.
Document outline

Keep your place and jump directly to a heading.

Table of Contents
System Normal // Awaiting Context

Intelligence Hub

Navigate the knowledge graph to generate context. The Hub adapts dynamically to surface backlinks, related notes, and metadata insights.