
Lil H.
asked 02/27/23I really need a solution, and explanation to that solution. I found this really hard
Raj encoded a secret phrase using matrix multiplication. Using A = 1, B = 2, C = 3, and so on, he multiplied the clear text code for each letter by the matrix C= to get a matrix that represents the encoded text. The matrix representing the encoded text is below.
What is the secret phrase? Determine the location of spaces after you decode the text.
2 Answers By Expert Tutors
Daniel B. answered 02/27/23
A retired computer professional to teach math, physics
Let
C be the given 2x2 code matrix,
E be the given 2x7 matrix of encoded text,
T be the unknown matrix of plain text.
The statement of the problem has the sentence
"he multiplied the clear text code for each letter by the matrix C".
That implies either T × C = E or C × T = E.
T × C would yield a matrix with 2 columns, while E has seven columns.
Therefore it must be
C × T = E (1)
and T must be a 2×7 matrix.
We can calculate T by multiplying both sides of (1) with the inverse C-1 of C on the left
C-1 × C × T = C-1 × E
T = C-1 × E
At this point you need to
a) calculate the inverse C-1
b) perform the the multiplication C-1 × E
c) replace the resulting numbers in T by their corresponding letters
d) insert blanks to make it valid English.
a), b), and c) are tedious, but you can write a simple computer program to do them for you.
If you cannot do that, then there are web site that will do a) and b) for you.
If you are not allowed any automation, then this is just a very tedious exercise in arithmetic.

Doug C. answered 02/27/23
Math Tutor with Reputation to make difficult concepts understandable
Still looking for help? Get the right answer, fast.
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Mark M.
You have posted multiple problems dealing with matrices. Do you have questions as to how to operate on them?02/27/23