Question: If a matrix is arranged such that each element is the sum of the two elements directly above it, what is the value of the element in the second row, second column if the first row is [1, 1]?
Options:
Correct Answer: 2
Solution:
The second row, second column is the sum of the two elements above it, which are both 1, so 1 + 1 = 2.