edited by
307 views
0 votes
0 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

  1. $B[i,j]=C[i,j+1]$
  2. $B[i,j]=C[j+1,i]$
  3. $B[i,j]=C[j, i+1]$ 

I m getting $c$ .is it correct???

edited by

1 Answer

0 votes
0 votes
Option (C) is correct

let we take matrix A and B of 3*3 which is lower triangular matrix means all the entries above diagonals are 0

take transpose of B means change rows to columns or columns to rows.

take matrix C 3*4 and fit matrix A and transpose of  matrix B into the rectangular matrix C, when we map elements of matrix B and matrix C using B[i,j]=C[j,i+1] we get the matrix B .
edited by

Related questions

0 votes
0 votes
1 answer
1
amit166 asked Sep 6, 2018
599 views
Consider an array A in which upto some index I , integers are stored and after that NULL values are stored. Let the size of array be n, then the time taken to find the va...
1 votes
1 votes
1 answer
2
samsaurabh asked Dec 1, 2017
847 views
Que: When key values are real, a similar data representation might be produced by using a hashing function with?A. ModB. DivC. TruncD. Log N
0 votes
0 votes
1 answer
4