Line L is perpendicular to two given lines. Their direction vectors are $\vec{d_1} = <4, 1, 1>$ and $\vec{d_2} = <1, 1, 0>$. The direction vector $\vec{d_L}$ of line L is found using the cross product of $\vec{d_1}$ and $\vec{d_2}$.
$\vec{d_L} = \vec{d_1} \times \vec{d_2} = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ 4 & 1 & 1 \\ 1 & 1 & 0 \end{vmatrix}$ $= \mathbf{i}(1 \cdot 0 - 1 \cdot 1) - \mathbf{j}(4 \cdot 0 - 1 \cdot 1) + \mathbf{k}(4 \cdot 1 - 1 \cdot 1)$ $= \mathbf{i}(-1) - \mathbf{j}(-1) + \mathbf{k}(3) = <-1, 1, 3>$
Line L passes through $P(1, 1, 1)$ and has direction vector $\vec{d_L} = <-1, 1, 3>$. The parametric equation for L is $\vec{r} = <1, 1, 1> + t<-1, 1, 3>$, or: $x = 1 - t$ $y = 1 + t$ $z = 1 + 3t$
Point Q is where line L intersects the yz-plane ($x=0$). Set $x=0$: $1 - t = 0 \implies t = 1$. Calculate Q coordinates using $t=1$: $Q = (1-1, 1+1, 1+3(1)) = (0, 2, 4)$.
Line L' is parallel to L, so its direction vector is also $\vec{d_L} = <-1, 1, 3>$. Line L' passes through $S(1, 0, -1)$. The parametric equation for L' is $\vec{r} = <1, 0, -1> + u<-1, 1, 3>$, or: $x = 1 - u$ $y = u$ $z = -1 + 3u$
Point R is where line L' intersects the yz-plane ($x=0$). Set $x=0$: $1 - u = 0 \implies u = 1$. Calculate R coordinates using $u=1$: $R = (1-1, 1, -1+3(1)) = (0, 1, 2)$.
The vertices of the parallelogram are $P(1, 1, 1)$, $Q(0, 2, 4)$, $R(0, 1, 2)$, $S(1, 0, -1)$. We use the vectors representing two adjacent sides originating from P: $\vec{PQ}$ and $\vec{PS}$.
The area of the parallelogram is the magnitude of the cross product $||\vec{PQ} \times \vec{PS}||$.
$\vec{PQ} \times \vec{PS} = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ -1 & 1 & 3 \\ 0 & -1 & -2 \end{vmatrix}$ $= \mathbf{i}(1(-2) - 3(-1)) - \mathbf{j}((-1)(-2) - 3(0)) + \mathbf{k}((-1)(-1) - 1(0))$ $= \mathbf{i}(-2 + 3) - \mathbf{j}(2 - 0) + \mathbf{k}(1 - 0)$ $= <1, -2, 1>$
The area is $||<1, -2, 1>|| = \sqrt{1^2 + (-2)^2 + 1^2} = \sqrt{1 + 4 + 1} = \sqrt{6}$.
The square of the area is $(\sqrt{6})^2 = 6$.