138k views
2 votes
Dina encoded a secret phrase using matrix multiplication. She multiplied the clear text code for each letter by the matrix (See image) to get a matrix that represents the encoded text. By which matrix does Dina multiply the encoded text to get the matrix for the clear text code?

Dina encoded a secret phrase using matrix multiplication. She multiplied the clear-example-1

2 Answers

2 votes

Answer:

C= 1 1

3 2

Explanation:

User Deolu A
by
5.1k points
7 votes

Dina needs to multiply by the inverse of C. The inverse of a 2×2 matrix is easily calculated from its definition: the transpose of the cofactor matrix divided by the determinant. Here, that is


C^(-1)=\left[\begin{array}{cc}-1&-1\\-3&-2\end{array}\right] \cdot(1)/((-2)(-1)-(3)(1)) =\left[\begin{array}{cc}1&1\\3&2\end{array}\right]


User Varantir
by
5.4k points
Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.