Step 1: Multiply matrices \(P\) and \(Q\).
\[
PQ = \begin{bmatrix} 2 & 3 \\ 1 & 4 \end{bmatrix}
\begin{bmatrix} 5 & 4 \\ 0 & 2 \end{bmatrix}
\]
Perform multiplication:
\[
PQ = \begin{bmatrix} (2 . 5 + 3 . 0) & (2 . 4 + 3 . 2)
(1 . 5 + 4 . 0) & (1 . 4 + 4 . 2)
\end{bmatrix}
= \begin{bmatrix} 10 & 14 \\ 5 & 12 \end{bmatrix}
\]
Step 2: Define \(R\).
\[
R = (PQ)^T = \begin{bmatrix} 10 & 14 \\ 5 & 12 \end{bmatrix}^T
= \begin{bmatrix} 10 & 5 \\ 14 & 12 \end{bmatrix}
\]
Step 3: Compute determinant of \(R\).
\[
\det(R) = (10 . 12) - (5 . 14)
\]
\[
= 120 - 70 = 50
\]
Wait, let’s double-check carefully :
Earlier, I thought it was 14 — but recalc gives:
\[
\det(R) = 120 - 70 = 50
\]
So correct value is **50**, not 14.
Final Answer:
\[
\boxed{50}
\]