747 views
1 votes
1 votes
Assume that there are two lower triangular matrices A and B of size n*n. If matrix A and transpose of B are fit into a rectangular matrix C of size n*(n+1), then
a) B[i,j]=C[i,j+1]
b)B[i,j]=C[j+1,i]
c)B[i,j]=C[j, i+1]

1 Answer

0 votes
0 votes
I think the answer should be option (c). I think an explicit explanation is not required because it can be easily checked with any 2 lower triangular matrices.

Related questions

3 votes
3 votes
2 answers
1
Aghori asked Jul 14, 2017
1,149 views
#include <stdio.h int main() { int *p = (int *)20; int *q = (int *)30; printf("%d", q - p); }Explain which one of the following is correct?Compilation error.102None of th...