Ravi Kant Kumar

If [[1, 2], [3, 4]] [[3, 1], [2, 5]] = [[7, 11], [k, 23]], then write the value of k.

Find k from Matrix Multiplication Find k Given: \[ \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} \begin{bmatrix} 3 & 1 \\ 2 & 5 \end{bmatrix} = \begin{bmatrix} 7 & 11 \\ k & 23 \end{bmatrix} \] Step 1: Multiply Matrices \[ AB = \begin{bmatrix} 1(3) + 2(2) & 1(1) + 2(5) \\ 3(3) […]

If [[1, 2], [3, 4]] [[3, 1], [2, 5]] = [[7, 11], [k, 23]], then write the value of k. Read More »

If A = [[cos α, -sin α], [sin α, cos α]] is identity matrix, then write the value of α.

Find α when Matrix is Identity Find α such that Matrix is Identity Given: \[ A = \begin{bmatrix} \cos \alpha & -\sin \alpha \\ \sin \alpha & \cos \alpha \end{bmatrix} \] \[ A = I = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} \] Step 1: Compare Elements \[ \cos \alpha = 1

If A = [[cos α, -sin α], [sin α, cos α]] is identity matrix, then write the value of α. Read More »

If A is a matrix of order 3×4 and B is a matrix of order 4×3, find the order of the matrix of AB.

Order of Matrix AB Find the Order of Matrix AB Given: \[ A \text{ is of order } 3 \times 4,\quad B \text{ is of order } 4 \times 3 \] Step 1: Check Multiplication Condition \[ \text{Number of columns of A} = \text{Number of rows of B} = 4 \] So, AB exists. Step

If A is a matrix of order 3×4 and B is a matrix of order 4×3, find the order of the matrix of AB. Read More »