NDA Maths · Functions

Functional Equations

You are given a relation the function must satisfy — substitute clever values to pin down f(x) or a specific value.

Why this matters

Eighteen PYQs, mostly MODERATE — the chapter's 'solve for the unknown function' genre. Three patterns cover almost all of them: substitute a second argument (x → 1/x or x → 1−x) and solve the resulting linear system; recognise multiplicative/additive forms (f(xy)=f(x)f(y), f(x+y)=f(x)f(y)); or undo an argument shift like f(x+1)=… to recover f(x). Substitution is the master tool.

Concept 1 of 3

Solving by substitution (x → 1/x, x → 1−x)

Intuition

When one equation mixes f(x)f(x) with f(something)f(\text{something}), substitute that 'something' for xx to get a second equation. Two equations, two unknowns f(x)f(x) and f(other)f(\text{other}) — solve like simultaneous equations.

Definition

If a relation links f(x)f(x) and f(g(x))f(g(x)) where g(g(x))=xg(g(x))=x (e.g. g(x)=1xg(x)=\tfrac1x or 1x1-x), replace xx by g(x)g(x) to obtain a second relation, then eliminate f(g(x))f(g(x)) algebraically to isolate f(x)f(x).

Worked example

If f(x)+2f(1x)=xf(x)+2f(1-x)=x for all xx, find f(x)f(x).
  1. Replace xx by 1x1-x: f(1x)+2f(x)=1xf(1-x)+2f(x)=1-x.   \;(2)
  2. Original: f(x)+2f(1x)=xf(x)+2f(1-x)=x.   \;(1)
  3. Compute 2×(2)(1)2\times(2)-(1): 4f(x)+2f(1x)f(x)2f(1x)=2(1x)x3f(x)=23x4f(x)+2f(1-x)-f(x)-2f(1-x)=2(1-x)-x\Rightarrow 3f(x)=2-3x.
  4. Divide by 3.
Answer:f(x)=23x3=23xf(x)=\dfrac{2-3x}{3}=\dfrac{2}{3}-x.
Practice this conceptself-check

Try it yourself

If 2f(x)+f(1x)=x2f(x)+f(1-x)=x for all xx, find f(x)f(x).

From the bank · past-year question

Example 1FunctionsMODERATE
If 4f(x)f(1x)=(2x+1x)(2x1x)4f(x)-f\left(\frac{1}{x}\right)=\left(2x+\frac{1}{x}\right)\left(2x-\frac{1}{x}\right), then what is f(2)f(2) equal to?

[Q67 · Apr · 2022]

One equation, two unknowns — make a second

You cannot read off f(x)f(x) from a single relation that also contains f(1/x)f(1/x) or f(1x)f(1-x). Generate the partner equation by substituting, then solve the 2×22\times2 system. Substituting a value that is its own partner (like x=12x=\tfrac12 for x1xx\to1-x) can shortcut a single requested value.

Concept 2 of 3

Multiplicative and additive forms

Intuition

A few functional equations have signature solutions. Recognise the form and the function type follows: products go to powers, sums-to-products go to exponentials, sums-to-sums go to linear.

Definition

  • f(xy)=f(x)f(y)f(xy)=f(x)f(y): power-type, f(x)=xkf(x)=x^k; useful values come from f(1)=1f(1)=1 and f(1/a)=1/f(a)f(1/a)=1/f(a).
  • f(x+y)=f(x)f(y)f(x+y)=f(x)f(y): exponential, f(x)=axf(x)=a^x; so f(x)f(y)f(z)=f(x+y+z)f(x)f(y)f(z)=f(x+y+z).
  • f(x+y)=f(x)+f(y)f(x+y)=f(x)+f(y): additive (Cauchy), f(x)=cxf(x)=cx.

Worked example

If f(x+y)=f(x)f(y)f(x+y)=f(x)f(y) for all x,yx,y and f(1)=3f(1)=3, find f(3)f(3).
  1. The form f(x+y)=f(x)f(y)f(x+y)=f(x)f(y) means ff is exponential: f(x)=f(1)xf(x)=f(1)^x.
  2. So f(3)=f(1)3=33f(3)=f(1)^3=3^3.
Answer:f(3)=27f(3)=27.
Practice this conceptself-check

Try it yourself

If f(xy)=f(x)f(y)f(xy)=f(x)f(y) and f(3)=9f(3)=9, find f ⁣(13)f\!\left(\tfrac13\right).

From the bank · past-year question

Example 2FunctionsEASY
Let f(x)f(y)=f(xy)f(x)f(y)=f(xy) for all real x,yx,y. If f(2)=4f(2)=4, then what is the value of f ⁣(12)f\!\left(\dfrac{1}{2}\right)?

[Q80 · Sep · 2024]

Concept 3 of 3

Undoing an argument shift

Intuition

When the rule gives f(shifted x)f(\text{shifted } x) instead of f(x)f(x), introduce a new variable for the shifted argument, solve for the original xx, and substitute back to read ff of a bare variable.

Definition

Given f(g(x))=h(x)f(g(x))=h(x), set t=g(x)t=g(x), solve xx in terms of tt, and substitute: f(t)=h(x(t))f(t)=h(\,x(t)\,). Renaming txt\to x gives the explicit rule. (E.g. from f(x+1)f(x+1) put t=x+1x=t1t=x+1\Rightarrow x=t-1.)

Worked example

If f(x1)=x2+1f(x-1)=x^2+1, find f(x)f(x).
  1. Let t=x1x=t+1t=x-1\Rightarrow x=t+1.
  2. Substitute: f(t)=(t+1)2+1=t2+2t+2f(t)=(t+1)^2+1=t^2+2t+2.
  3. Rename txt\to x.
Answer:f(x)=x2+2x+2f(x)=x^2+2x+2.

From the bank · past-year question

Example 3FunctionsEASY
If f(x+1)=x23x+2f(x+1) = x^2 - 3x + 2, then what is f(x)f(x) equal to?

[Q51 · Apr · 2021]

Solve for the original variable before substituting

From f(x+1)=x23x+2f(x+1)=x^2-3x+2 you must write x=t1x=t-1 (where t=x+1t=x+1) and plug that in — not simply replace xx by xx in the right side. Getting the shift direction backwards is the usual slip.

Summary — formulas & gotchas at a glance

A revision cheat-sheet for the formulas and gotchas above. Click any concept name to jump back to its full explanation.

Watch out for (2)

Mastery check — 5 interleaved questions

Try each one before clicking. Questions are interleaved across the concepts above, not grouped — interleaving sharpens transfer.

Example 1FunctionsMODERATE
If 2f(x)+f(1x)=x2f(x)+f(1-x)=x, then what is f(x)f(x) equal to?

[Q80 · Apr · 2026]

Example 2FunctionsMODERATE
A function satisfies f(xy)=f(x)f(y)f(x-y)=f(x)f(y), where f(y)0f(y)\neq0. If f(1)=0.5f(1)=0.5, then what is f(2)+f(3)+f(4)+f(5)+f(6)f(2)+f(3)+f(4)+f(5)+f(6) equal to?

[Q25 · Sep · 2023]

Example 3FunctionsMODERATE
If f(2x)=4x2+1f(2x)=4x^2+1, then for how many real values of xx will f(2x)f(2x) be the GM of f(x)f(x) and f(4x)f(4x)?

[Q76 · Sep · 2024]

Example 4FunctionsHARD
Let 3f(x)+f ⁣(1x)=1x+13f(x)+f\!\left(\dfrac{1}{x}\right)=\dfrac{1}{x}+1.
What is f(x)f(x) equal to?

[Q99 · Apr · 2024]

Example 5FunctionsMODERATE
Consider the following for the items that follow: Let f(x)f(x) be a function satisfying f(x+y)=f(x)f(y)f(x+y) = f(x)f(y) for all x,yNx, y \in N such that f(1)=2f(1) = 2:
If x=2nf(x)=2044\sum_{x=2}^{n} f(x) = 2044, then what is the value of nn?

[Q31 · Sep · 2022]

Drill every past-year question on this subtopic

18 questions from the bank — paginated, with cart and Word-export support.