A matrix \(\mathbf{M}\) has 3 rows and 4 columns.$$
\left[\begin{array}{llll}
a_{11} & a_{12} & a_{13} & a_{14} \\
a_{21} & a_{22} & a_{23} & a_{24} \\
a_{31} & a_{32} & a_{33} & a_{34}
\end{array}\right]
$$The 12 entries in the matrix are to be stored in row major form in locations
7,609 to 7,620 in a computer's memory. This means that the entries in the
first row (reading left to right) are stored first, then the entries in the
second row, and finally the entries in the third row.
a. Which location will \(a_{22}\) be stored in?
b. Write a formula (in \(i\) and \(j\) ) that gives the integer \(n\) so that \(a_{i
j}\) is stored in location \(7,609+n\).
c. Find formulas (in \(n\) ) for \(r\) and \(s\) so that \(a_{r s}\) is stored in
location \(7,609+n\).