Questions: Function Composition and Functional Structure

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

Given f: A → B defined by f(a) = a + 1 and g: B → C defined by g(b) = b², what is (g ∘ f)(3)?

A10 (computing g(3) = 9, then f(9) = 10)
B16 (computing f(3) = 4, then g(4) = 16)
C7 (adding f(3) + g(3) = 4 + 9)
D12 (multiplying f(3) × g(3) = 4 × 3)
Question 2 Multiple Choice

Suppose g ∘ f is an injective (one-to-one) function. What can we conclude?

ABoth f and g must be injective
Bf must be injective, but g need not be
Cg must be injective, but f need not be
DNeither f nor g is required to be injective
Question 3 True / False

The composition of two bijections is always a bijection.

TTrue
FFalse
Question 4 True / False

Function composition is commutative: for any functions f and g with compatible domains, f ∘ g typically equals g ∘ f.

TTrue
FFalse
Question 5 Short Answer

Why does the notation g ∘ f indicate that f is applied first, and why does this right-to-left order matter?

Think about your answer, then reveal below.