2

I want to expand the determinant on the left side of the following equation: $$ \left| \begin{array}{ccc} 1 & 0 & 0 \\ p & q & -1 \\ \text{a}-x & -y & -z \end{array} \right|=0.$$

I am getting $qz+y=0.$ Please verify if this is correct.

tc216
  • 869
Student
  • 9,196
  • 8
  • 35
  • 81

3 Answers3

3

You may use Wolfram Alpha to check this kind of computations.

Momo
  • 16,027
2

Expanding the determinant about the first row, we obtain: $$\begin{vmatrix} 1 & 0 & 0 \\ p & q & -1 \\ a-x & -y & -z \end{vmatrix} = \begin{vmatrix} q & -1 \\ -y & -z \end{vmatrix} = q(-z) -(-1)(-y) = -(qz+y)$$

LtSten
  • 1,674
2

The determinant of a matrix can be written by a cofactor expansion across a specific row or column (any row of column for that matter).

In your case, the determinant can be chosen to be expanded on the first row (which is probably the easiest), yielding:

$$\begin{vmatrix}1 & 0 & 0 \\ p & q & -1 \\a-x & -y & -z\end{vmatrix} = -qz - y = -(qz + y)$$

Determinant expansion

q.Then
  • 3,080