Functions
Chapter: Functions Level: 1 — Recognition (MCQ + Matching + True/False with justification) Time limit: 20 minutes Total marks: 30
Section A — Multiple Choice (1 mark each)
Choose the single best answer.
Q1. For the function , the value of is: (a) 7 (b) 12 (c) 17 (d)
Q2. The domain of is: (a) all real numbers (b) (c) (d)
Q3. Which relation is NOT a function (fails the vertical line test)? (a) (b) (c) (d)
Q4. The range of (with domain all real numbers) is: (a) all reals (b) (c) (d)
Q5. The graph of is obtained from by: (a) shift 3 right (b) shift 3 left (c) shift 3 up (d) shift 3 down
Q6. If and , then equals: (a) (b) (c) (d)
Q7. The inverse of is: (a) (b) (c) (d)
Q8. Which function is even? (a) (b) (c) (d)
Q9. The function (for all ) is called a: (a) linear function (b) quadratic function (c) constant function (d) radical function
Q10. A one-to-one function (has an inverse) must pass the: (a) vertical line test only (b) horizontal line test (c) neither test (d) both tests fail
Section B — Matching (1 mark each, Q11–Q15)
Match each function in Column X with its type in Column Y.
| Column X | Column Y |
|---|---|
| Q11. | (A) Quadratic |
| Q12. | (B) Linear |
| Q13. | (C) Radical |
| Q14. | (D) Rational |
| Q15. | (E) Polynomial (degree 4) |
Write your answers as pairs, e.g. Q11–(?).
Section C — True/False WITH Justification (2 marks each, Q16–Q20)
State True or False and give a one-line reason.
Q16. The function is odd.
Q17. The graph is the reflection of in the -axis.
Q18. For , the composition .
Q19. A function with is increasing over all real numbers.
Q20. Every function has an inverse function.
Answer keyMark scheme & solutions
Section A (1 mark each)
Q1. (a) 7 — . [1]
Q2. (c) — Denominator at ; division by zero excluded. [1]
Q3. (c) — A vertical line (e.g. ) meets it at : two outputs, fails vertical line test. [1]
Q4. (b) — A square is never negative; smallest value 0 at . [1]
Q5. (c) shift 3 up — Adding a constant outside raises the graph. [1]
Q6. (b) — . [1]
Q7. (b) — Swap and solve: , so . [1]
Q8. (b) — : even. [1]
Q9. (c) constant function — Output is fixed regardless of input. [1]
Q10. (b) horizontal line test — One-to-one means each output once, so no horizontal line hits twice. [1]
Section B — Matching (1 mark each)
Q11 – (C) radical (square root). [1] Q12 – (D) rational (ratio of polynomials). [1] Q13 – (A) quadratic (degree 2). [1] Q14 – (B) linear (degree 1). [1] Q15 – (E) polynomial degree 4. [1]
Section C — True/False with Justification (2 marks each)
Q16. False [1] — , so it is even, not odd (odd needs ). [1 reason]
Q17. True [1] — Negating outputs flips each point to the opposite side of the -axis (reflection in -axis). [1 reason]
Q18. True [1] — . [1 reason]
Q19. True [1] — Slope means output rises as increases throughout . [1 reason]
Q20. False [1] — Only one-to-one (injective) functions have inverses; e.g. has none over . [1 reason]
[
{"claim":"f(4)=7 for f(x)=3x-5","code":"x=symbols('x'); f=3*x-5; result=(f.subs(x,4)==7)"},
{"claim":"f(g(x))=(x+1)**2 for f=x^2,g=x+1","code":"x=symbols('x'); f=lambda t:t**2; g=lambda t:t+1; result=(expand(f(g(x)))==expand((x+1)**2))"},
{"claim":"inverse of x+7 is x-7","code":"x=symbols('x'); result=simplify((x+7)-7 - x)==0 and simplify((x-7)+7 - x)==0"},
{"claim":"f(f(x))=9x for f(x)=3x","code":"x=symbols('x'); f=lambda t:3*t; result=(simplify(f(f(x))-9*x)==0)"},
{"claim":"|x| is even not odd","code":"x=symbols('x',real=True); result=(Abs(-x)==Abs(x))"}
]