Answered step by step
Verified Expert Solution
Question
1 Approved Answer
This is how matrix encryption works: . You will have a square matrix called the encryption key, called matrix C. The bigger the matrix, the
This is how matrix encryption works: . You will have a square matrix called the encryption key, called matrix C. The bigger the matrix, the harder your code is to crack. For this project, we will use a 3x3. . Assign each letter of the alphabet a different number. Usually you'll do A=1, B=2. C=3, etc., but you can do anything. . Put the numbers in your code into a matrix that can be multiplied by your encryption key. Fill in any blank spaces with zeros. This is matrix A. . To encode the message: multiply the key by your numbers. The encoded message is matrix Z. So, Z = C. A. Remember that order matters when you multiply matrices! . To decode the message: multiply the encoded matrix by the inverse of the key. In other words, A = C-1 . Z. Remember that order matters! In this project, you will choose a location to meet your friend when you ditch math class. You have previously talked about the following locations: . The movies . The mall . The park . Your house You were about to tell your friend where to meet you, but you didn't get a chance because a teacher was walking by! Instead, you hand your friend your encryption key matrix, In the next class, you encode your message and pass it to your friend when you switch classes. If your friend can decode your message and figure out which location you're going to, you win! But if your friend decodes the message and just gets gibberish, then you have to go to math class.1. You and your friend create your encryption key matrix, C, together, so that you can both use it. You choose the matrix below. What kind of matrix is this? 3 2 C = 7 -2 2. Together, you and your friend assign each letter of the alphabet a different number. To make it challenging, you decide to randomize the numbers as shown below. A B C D E F G H J K L M 12 26 17 4 15 10 19 3 14 20 6 N O P Q R. S T V W X Y Z 21 11 16 5 22 9 18 7 23 2 24 13 25 Use this list to write your message in numbers below. It should say the location of where you want to meet. Use zeros for empty spaces (between words and at the end if there is extra room). 3. Write the numbers from step 2 as a matrix. This is matrix A, the pre-encoded mes- sage. It should have only three rows so that you can multiply (' by it. Use as many columns as you need. 4. Encode your message. That is, find matrix Z, knowing that Z = C . A. You give this matrix to your friend. At this point I will decode your message to see what location you've chosen.5. Your friend responds to your message, saying the following: 72 60 6 62 18 71 69 12 108 90 84 118 -18 109 41 28 12 40 36 -18 96 45 39 -12 Write this as a matrix that can be multiplied by your key C' (it should have only three rows). This will be matrix Z. 2 6. In order to decode your friend's message, you'll need the inverse of the key. Find C'-1. 7. You can find the plain numbers matrix, A, of your friend's message by multiplying C-1 . Z. Find A. 8. What did your friend's message say
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started