Consider the block $2n \times 2n$ matrix
$$\begin{bmatrix} A&B\\ 0&D \end{bmatrix}$$
where $A,B,D$ are $n \times n$ blocks. Show that
$$\det\begin{bmatrix} A&B\\ 0&D \end{bmatrix}=\det(A)\det(D)$$
So, I'm thinking maybe induction on the size of the matrices $A,B,D$ is the best way to approach this problem.
For $n=1, A=[a], B=[b], D=[d]$ $$\det\begin{bmatrix} a&b\\ 0&d \end{bmatrix}=ad-b\cdot 0=\det(A)\det(D)$$ Now let us suppose that the claim is true for the $n$ by $n$ matrices $A,B,D$.
We have to prove that this is true for the matrices $A,B,D$ of size $n+1$ by $n+1$.
$$\det\begin{bmatrix} A_{n+1\text{x}n+1}&B_{n+1\text{x}n+)}\\ 0&D_{n+1\text{x}n+1} \end{bmatrix}$$
I feel like I just ran into a circular argument. How can this proof be done with induction, if at all?