Concept:
Required plane normal is perpendicular to both given normals ⇒ cross product.
Step 1: Normals of planes.
\[
\vec{n_1}=(2,-2,1), \vec{n_2}=(1,-1,2)
\]
Step 2: Find cross product.
\[
\vec{n} = \vec{n_1} \times \vec{n_2}
\]
\[
=
\begin{vmatrix}
i & j & k
2 & -2 & 1
1 & -1 & 2
\end{vmatrix}
\]
\[
= i(-4+1) - j(4-1) + k(-2+2)
\]
\[
= -3i -3j + 0k
\]
\[
= (-1,-1,0)
\]
Step 3: Equation of plane.
\[
-1(x-1) -1(y+2) = 0
\]
\[
-x+1 -y-2 =0
\]
\[
x+y+1=0
\]