KurilooStudy·Practice·Succeed
Aptitude Topics

Functions

A function is a rule that assigns exactly one output to each input. Functions are fundamental to all of mathematics and appear in aptitude exams in forms like f(x) notation, composite functions, and inverse functions.

Fundamental Principles

Function

A relation f from set A to set B where every element in A has exactly one image in B. Notation: f: A → B.

Domain and Range

Domain is the set of all valid inputs. Range is the set of all resulting outputs.

Composite Function

(f ∘ g)(x) = f(g(x)). Apply g first, then f to the result.

Inverse Function

f⁻¹ is the function that reverses f. If f(a) = b, then f⁻¹(b) = a. f⁻¹ exists only if f is one-one and onto.

Essential Formulation Tips

  • Check domain restrictions: denominators ≠ 0, square roots ≥ 0.
  • For composition (f ∘ g)(x), evaluate inner function first.
  • To find f⁻¹(x), swap x and y in y = f(x) and solve for y.
  • If f(f(x)) = x, then f is its own inverse.

Shortcut Execution Techniques

  • Even function: f(-x) = f(x). Graph is symmetric about y-axis.
  • Odd function: f(-x) = -f(x). Graph is symmetric about origin.
  • f(x+a) shifts graph left by a; f(x-a) shifts right by a.
  • For linear f: f(ax+b) replaces every x with (ax+b).

Contextual Inquiries (FAQs)

Q: What is the difference between a relation and a function?

A: Every function is a relation, but not every relation is a function. A function has exactly one output per input.

Q: How do I find the domain of f(x) = 1/(x-2)?

A: The denominator cannot be zero: x ≠ 2. Domain = all real numbers except 2.

Q: What does (f ∘ g)(x) mean?

A: It means f(g(x)) — first apply g to x, then apply f to the result.