Custom (Symbol) Functions
A custom-operator question invents a symbol you have never seen — ◊, ⊕, ∇, a boxed number — and defines what it does, then asks you to compute. This is a signature GRE format and it is engineered to look scary. It is not: the definition IS the rule, and your only job is careful substitution. If the problem says "for all numbers x and y, x ◊ y = x² − 2y", then 5 ◊ 3 = 5² − 2(3) = 25 − 6 = 19. The traps are ordinary: watch the order of the two inputs (x ◊ y need not equal y ◊ x), respect the exponents and signs, and when a symbol is nested — like (2 ◊ 3) ◊ 4 — evaluate the inner bracket to a number first, then apply the rule again. Some versions define the operator on a single input (⌊x⌋ or "x* = x + 1") or ask you to solve for the unknown input that makes the expression equal a target. Read the definition twice, substitute in parentheses, and these become some of the most reliable points on the section.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
Notation & evaluation
| Function value | f(a) = replace every x in the rule with a |
|---|---|
| Composition | f(g(x)) = evaluate g first, then feed into f |
| Custom operator | a ⊕ b = (whatever rule the problem defines) |
Domain & range
| Domain | all inputs x that are allowed |
|---|---|
| Range | all outputs f(x) that can result |
| Denominator rule | exclude any x making a denominator 0 |
| Even-root rule | the quantity under a √ must be ≥ 0 |