Question

Difficulty: MediumFunction Definitions, Evaluation, and Custom Operators
The function ff is defined for all real numbers by
f(x)={3x1if x4x2kif x>4f(x) = \begin{cases} 3x - 1 & \text{if } x \le 4 \\ x^2 - k & \text{if } x > 4 \end{cases}
where kk is a constant. If f(f(3))=14f(f(3)) = 14, what is the value of kk?

Answer: 50

Answer

50
To solve for kk, evaluate the composite function f(f(3))f(f(3)) step-by-step. First, find f(3)f(3). Since 343 \le 4, we use the first branch of the definition: f(3)=3(3)1=8f(3) = 3(3) - 1 = 8. Next, evaluate f(8)f(8). Since 8>48 > 4, we use the second branch of the definition: f(8)=82k=64kf(8) = 8^2 - k = 64 - k. Given that f(f(3))=14f(f(3)) = 14, we set 64k=1464 - k = 14, which yields k=50k = 50.

Step-by-Step Solution

1
Evaluate the inner function value f(3)
f(3) = 8
Because 3 is less than or equal to 4, the definition f(x) = 3x - 1 applies, yielding f(3) = 3(3) - 1 = 8.
2
Express f(f(3)) in terms of k
f(8) = 64 - k
Since the inner value is 8 and 8 > 4, the piecewise condition specifies using f(x) = x^2 - k, giving f(8) = 8^2 - k = 64 - k.
3
Solve the linear equation for k
k = 50
Setting the calculated expression equal to the given value 14 gives 64 - k = 14, which simplifies to k = 50.

Key Concept

Piecewise Function Evaluation and Parameter Resolution
Estimated Time:1m 30s
Rate this question