Advertisements
Advertisements
Question
Using encoding matrix `[[1,1],[0,1]]` ,encode & decode the message "MUMBAI"
Solution
Encoding matrix : `A=[[1,1],[0,1]]`
Message is : MUMBAI.
The given message in matrix form is :` B=[[13,13,1],[21,2,9]]`
Encoded message in matrix form is given by ,
C= AB
=`[[1,1],[0,1]] [[13,13,1],[21,2,9]]`
∴ `C= [[34,15,10],[21,2,9]]`
Encoded message is : 34 21 15 2 10 9
GUOBJI
Decoded matrix is given by ,
`B=A_-1.C`
=`[[1,-1],[0,1]] [[34,15,10],[21,2,9]]`
∴ `B=[[13,13,1],[21,2,9]]`
Decoded message : MUMBAI
APPEARS IN
RELATED QUESTIONS
Using the matrix A = `[[-1,2],[-1,1]]`decode the message of matrix C= `[[4,11,12,-2],[-4,4,9,-2]]`
Show that the following equations: -2x + y + z = a, x - 2y + z = b, x + y - 2z = c have no solutions unless a +b + c = 0 in which case they have infinitely many solutions. Find these solutions when a=1, b=1, c=-2.