2023 VCAA Maths Methods Sample Exam 2

This is the full VCE Maths Methods Exam with worked solutions. You can also try Mini-Tests, which are official VCAA exams split into short tests you can do anytime.

Number of marks: 29

Reading time: 5 minutes

Writing time: 45 minutes

Section A – Multiple-choice questions
Instructions
• Answer all questions in pencil on your Multiple-Choice Answer Sheet.
• Choose the response that is correct for the question.
• A correct answer scores 1; an incorrect answer scores 0.
• Marks will not be deducted for incorrect answers.
• No marks will be given if more than one answer is completed for any question.
• Unless otherwise indicated, the diagrams in this book are not drawn to scale.


Question 1 [2023 Sample Exam 2 Section A Q1]

\(x - 2y = 3\)
\(2y - z = 4\)

Which one of the following correctly describes the general solution to the system of linear equations given above?

  • A. \(x = k, y = \frac{1}{2}(k + 3), z = k - 1,\) for all \(k \in R\)
  • B. \(x = k, y = \frac{1}{2}(k + 3), z = k + 1,\) for all \(k \in R\)
  • C. \(x = k, y = \frac{1}{2}(k - 3), z = k + 7,\) for all \(k \in R\)
  • D. \(x = k, y = \frac{1}{2}(k - 3), z = k - 7,\) for all \(k \in R\)
  • E. \(x = k, y = \frac{1}{2}(k + 3), z = k - 7,\) for all \(k \in R\)
Correct Answer: D
Click here for full solution
Question 2 [2023 Sample Exam 2 Section A Q2]

Newton's method is being used to approximate the non-zero \(x\)-intercept of the function with the equation \(f(x) = \frac{x^3}{5} - \sqrt{x}\). An initial estimate of \(x_0 = 1\) is used.

Which one of the following gives the first estimate that would correctly approximate the intercept to three decimal places?

  • A. \(x_6\)
  • B. \(x_7\)
  • C. \(x_8\)
  • D. \(x_9\)
  • E. The intercept cannot be correctly approximated using Newton's method.
Correct Answer: C
Click here for full solution
Question 3 [2023 Sample Exam 2 Section A Q3]

The area between the curve \(y = \frac{1}{27}(x - 3)^2(x + 3)^2 + 1\) and the \(x\)-axis on the interval \(x \in [0, 4]\) has been approximated using the trapezium rule, as shown in the graph below.

Graph of the function y = 1/27(x-3)^2(x+3)^2+1 on the interval [0, 4] showing four trapeziums for area approximation.

Using the trapezium rule, the approximate area calculated is equal to

  • A. \(\frac{1}{2}\left(4+\frac{91}{27}+\frac{52}{27}+1+\frac{76}{27}\right)\)
  • B. \(\frac{1}{2}\left(4+\frac{182}{27}+\frac{104}{27}+2+\frac{76}{27}\right)\)
  • C. \(\frac{1}{2}\left(8+\frac{182}{27}+\frac{104}{27}+2+\frac{152}{27}\right)\)
  • D. \(\frac{1}{2}\left(\frac{182}{27}+\frac{104}{27}+2+\frac{76}{27}\right)\)
  • E. \(\frac{1}{2}\left(8+\frac{182}{27}+\frac{104}{27}+2\right)\)
Correct Answer: B
Click here for full solution
Question 4 [2023 Sample Exam 2 Section A Q4]

The probability density function \(f\) of a random variable \(X\) is given by

\( f(x) = \begin{cases} \frac{x+1}{20} & 0 \le x < 4 \\ \frac{36-5x}{64} & 4 \le x \le 7.2 \\ 0 & \text{elsewhere} \end{cases} \)

The value of \(a\) such that \(\Pr(X \le a) = \frac{5}{8}\) is

  • A. \(\frac{4(\sqrt{15}-9)}{5}\)
  • B. \(\sqrt{26}-1\)
  • C. \(\frac{36-4\sqrt{15}}{5}\)
  • D. \(\frac{4\sqrt{15}+9}{5}\)
  • E. \(\frac{4\sqrt{15}+36}{5}\)
Correct Answer: C
Click here for full solution
Question 5 [2023 Sample Exam 2 Section A Q5]

The algorithm below, described in pseudocode, estimates the value of a definite integral using the trapezium rule.

Inputs: f(x), the function to integrate          a, the lower terminal of integration          b, the upper terminal of integration          n, the number of trapeziums to use Define trapezium(f(x),a,b,n)   h ← (b - a) ÷ n   sum ← f(a) + f(b)   x ← a + h   i ← 1   While i < n Do     sum ← sum + 2 × f(x)     x ← x + h     i ← i + 1   EndWhile   area ← (h ÷ 2) × sum   Return area

Consider the algorithm implemented with the following inputs.

trapezium(\(\log_e(x)\), 1, 3, 10)

The value of the variable sum after one iteration of the While loop would be closest to

  • A. 1.281
  • B. 1.289
  • C. 1.463
  • D. 1.617
  • E. 2.136
Correct Answer: C
Click here for full solution
Question 6 [2023 Sample Exam 2 Section A Q6]

Consider the algorithm below, which uses the bisection method to estimate the solution to an equation in the form \(f(x) = 0\).

Inputs: f(x), a function of x, where x is in radians          a, the lower interval endpoint          b, the upper interval endpoint          max, the maximum number of iterations Define bisection(f(x),a,b,max)   If f(a) × f(b) > 0 Then     Return "Invalid interval"   i ← 0   While i < max Do     mid ← (a + b) ÷ 2     If f(mid) = 0 Then       Return mid     Else If f(a) × f(mid) < 0 Then       b ← mid     Else       a ← mid     i ← i + 1   EndWhile   Return mid

The algorithm is implemented as follows.

bisection(\(\sin(x)\), 3, 5, 2)

Which value would be returned when the algorithm is implemented as given?

  • A. -0.351
  • B. -0.108
  • C. 3.25
  • D. 3.5
  • E. 4
Correct Answer: D
Click here for full solution
Question 7 [2023 Sample Exam 2 Section A Q7]

One way of implementing Newton's method using pseudocode, with a tolerance level of 0.001, is shown below.

The pseudocode is incomplete, with two missing lines indicated by an empty box.

Inputs: f(x), a function of x          x0, an initial estimate for the x-intercept of f(x) Define newton(f(x), x0)   df(x) ← the derivative of f(x)   i ← 0   prev_x ← x0   While i < 1000 Do     next_x ← prev_x - f(prev_x) ÷ df(prev_x)     
    Else       prev_x ← next_x       i ← i + 1   EndWhile

Which one of the following options would be most appropriate to fill the empty box?

  • A.
    If next_x - prev_x < 0.001 Then
      Return prev_x
  • B.
    If next_x - prev_x < 0.001 Then
      Return next_x
  • C.
    If prev_x - next_x < 0.001 Then
      Return next_x
  • D.
    If -0.001 < next_x - prev_x < 0.001 Then
      Return prev_x
  • E.
    If -0.001 < next_x - prev_x < 0.001 Then
      Return next_x
Correct Answer: E
Click here for full solution

End of Section A


Section B
Instructions
• Answer all questions in the spaces provided.
• Write your responses in English.
• In questions where a numerical answer is required, an exact value must be given unless otherwise specified.
• In questions where more than one mark is available, appropriate working must be shown.
• Unless otherwise indicated, the diagrams in this book are not drawn to scale.


Question 1 (10 marks)
[2023 Sample Exam 2 Section B Q1]

The function \(g\) is defined as follows.

\(g : (0, 7] \rightarrow \mathbb{R}, g(x) = 3 \log_e(x) - x\)

a. Sketch the graph of \(g\) on the axes below. Label the vertical asymptote with its equation, and label any axial intercepts, stationary points and endpoints in coordinate form, correct to three decimal places. 3 marks

A Cartesian plane with x-axis from 0 to 7 and y-axis from -1.5 to 0.5 for sketching the graph of g.

b.

i. Find the equation of the tangent to the graph of \(g\) at the point where \(x = 1\). 1 mark

ii. Sketch the graph of the tangent to the graph of \(g\) at \(x = 1\) on the axes in part a. 1 mark

Newton's method is used to find an approximate \(x\)-intercept of \(g\), with an initial estimate of \(x_0 = 1\).

c. Find the value of \(x_1\). 1 mark

d. Find the horizontal distance between \(x_1\) and the closest \(x\)-intercept of \(g\), correct to four decimal places. 1 mark

e.

i. Find the value of \(k\), where \(k > 1\), such that an initial estimate of \(x_0 = k\) gives the same value of \(x_1\) as found in part c. Give your answer correct to three decimal places. 2 marks

ii. Using this value of \(k\), sketch the tangent to the graph of \(g\) at the point where \(x = k\) on the axes in part a. 1 mark

Question 2 (12 marks)
[2023 Sample Exam 2 Section B Q2]

Jac and Jill have built a ramp for their toy car. They will release the car at the top of the ramp and the car will jump off the end of the ramp.

The cross-section of the ramp is modelled by the function \(f\), where

\( f(x) = \begin{cases} 40 & 0 \le x < 5 \\ \frac{1}{800}(x^3 - 75x^2 + 675x + 30375) & 5 \le x \le 55 \end{cases} \)

\(f(x)\) is both smooth and continuous at \(x = 5\).

The graph of \(y = f(x)\) is shown below, where \(x\) is the horizontal distance from the start of the ramp and \(y\) is the height of the ramp. All lengths are in centimetres.

Graph of the ramp function f(x).

a. Find \(f'(x)\) for \(0 < x < 55\). 2 marks

b.

i. Find the coordinates of the point of inflection of \(f\). 1 mark

ii. Find the interval of \(x\) for which the gradient function of the ramp is strictly increasing. 1 mark

iii. Find the interval of \(x\) for which the gradient function of the ramp is strictly decreasing. 1 mark

Jac and Jill decide to use two trapezoidal supports, each of width 10 cm. The first support has its left edge placed at \(x = 5\) and the second support has its left edge placed at \(x = 15\). Their cross-sections are shown in the graph below.

Graph of the ramp function showing two trapezoidal supports.

c. Determine the value of the ratio of the area of the trapezoidal cross-sections to the exact area contained between \(f(x)\) and the \(x\)-axis between \(x = 5\) and \(x = 25\). Give your answer as a percentage, correct to one decimal place. 3 marks

d. Referring to the gradient of the curve, explain why a trapezium rule approximation would be greater than the actual cross-sectional area for any interval \(x \in [p, q]\), where \(p \ge 25\). 1 mark

e. Jac and Jill roll the toy car down the ramp and the car jumps off the end of the ramp. The path of the car is modelled by the function \(P\), where

\( P(x) = \begin{cases} f(x) & 0 \le x \le 55 \\ g(x) & 55 < x \le a \end{cases} \)

\(P\) is continuous and differentiable at \(x = 55\), \(g(x) = -\frac{1}{16}x^2 + bx + c\), and \(x = a\) is where the car lands on the ground after the jump, such that \(P(a) = 0\).

i. Find the values of \(b\) and \(c\). 2 marks

ii. Determine the horizontal distance from the end of the ramp to where the car lands. Give your answer in centimetres, correct to two decimal places. 1 mark


End of examination questions

VCE is a registered trademark of the VCAA. The VCAA does not endorse or make any warranties regarding this study resource. Past VCE exams and related content can be accessed directly at www.vcaa.vic.edu.au

>