I'm working through Discrete Mathematics and its Applications, which early on delves into the following as part of a Sudoku solver:
$$\bigwedge_{i=1}^{9} \bigwedge_{n=1}^{9} \bigvee_{j=1}^{9} p(i,j,n)$$
Now I understand $\bigvee_{j=1}^{9} p(i,j,n)$ to be a disjunction of a series expanding into $p(i,1,n) \vee p(i,2,n) \vee \ldots \vee p(i,9,n)$. (Please forgive/correct me if I'm using the wrong terminology).
My problem, now, is that I'm not sure how something like the following would expand:
$$\bigwedge_{i=1}^{2} \bigvee_{j=1}^{2} p(i,j)$$
I know that conjunction distributes over disjunction and vice versa, so I feel perhaps it could expand into the following:
$$[p(1,j) \wedge p(i,1)] \vee [p(2,j) \wedge p(i,2)]$$
I'm thoroughly certain I'm getting this wrong, but I can't seem to find an online resource that discusses this index notation. If somebody could point me in the right direction I'd be hugely grateful.
(If it helps, I'm a programmer, so loop-based analogies and the like are right at home.)
Note: I've read the answers to this question as well as this question, which were suggested as similar questions, but they don't appear to duplicate this.