OCR Further Discrete 2018 December — Question 5 12 marks

Exam BoardOCR
ModuleFurther Discrete (Further Discrete)
Year2018
SessionDecember
Marks12
TopicShortest Path
TypeNetwork construction from matrix
DifficultyModerate -0.3 This is a straightforward application of standard Decision Maths techniques: drawing a network from given data, applying Dijkstra's algorithm (a routine procedure), and constructing a distance table. Part (c) requires minimal real-world reasoning about transport systems. While multi-part, each component is textbook-standard with no novel problem-solving required, making it slightly easier than average.
Spec7.04a Shortest path: Dijkstra's algorithm

5 A rapid transport system connects 8 stations using three railway lines.
The blue line connects A to B to C to D .
FromtoTravel time
AB5
BC3
CD9
The red line connects \(B\) to \(F\) to \(E\) to \(D\).
FromtoTravel time
BF2
FE3
ED2
The green line connects E to G to H to A .
FromtoTravel time
EG5
GH6
HA4
  • The travel times for the return journeys are the same as for the outward journeys (so, for example, the travel time from B to A is 5 minutes, the same as the time from A to B ).
  • All travel times include time spent stopped at stations.
  • No trains are delayed so the travel times are all correct.
  • Give a reason why the quickest journey from A to D may take longer than 12 minutes.

Question 5:
AnswerMarks Guidance
54 0
Question 5:
5 | 4 | 0 | 1
5 A rapid transport system connects 8 stations using three railway lines.\\
The blue line connects A to B to C to D .

\begin{center}
\begin{tabular}{ | c | c | c | }
\hline
From & to & Travel time \\
\hline
A & B & 5 \\
\hline
B & C & 3 \\
\hline
C & D & 9 \\
\hline
\end{tabular}
\end{center}

The red line connects $B$ to $F$ to $E$ to $D$.

\begin{center}
\begin{tabular}{ | c | c | c | }
\hline
From & to & Travel time \\
\hline
B & F & 2 \\
\hline
F & E & 3 \\
\hline
E & D & 2 \\
\hline
\end{tabular}
\end{center}

The green line connects E to G to H to A .

\begin{center}
\begin{tabular}{ | c | c | c | }
\hline
From & to & Travel time \\
\hline
E & G & 5 \\
\hline
G & H & 6 \\
\hline
H & A & 4 \\
\hline
\end{tabular}
\end{center}

\begin{itemize}
  \item The travel times for the return journeys are the same as for the outward journeys (so, for example, the travel time from B to A is 5 minutes, the same as the time from A to B ).
  \item All travel times include time spent stopped at stations.
  \item No trains are delayed so the travel times are all correct.
\begin{enumerate}[label=(\alph*)]
\item \begin{enumerate}[label=(\roman*)]
\item Model the blue, red and green lines, and the travel times above, as a network.
\item Use Dijkstra's algorithm to find the quickest travel times from C to each of the other stations.
\end{enumerate}\item \begin{enumerate}[label=(\roman*)]
\item Write down a route from A to D with travel time 12 minutes.
\item Construct a table of quickest travel times.
\end{enumerate}\item Give a reason why the quickest journey from A to D may take longer than 12 minutes.
\end{itemize}
\end{enumerate}

\hfill \mbox{\textit{OCR Further Discrete 2018 Q5 [12]}}