Solving Cryptographic System 4: Find n Given e & M

  • Thread starter Thread starter aimfail
  • Start date Start date
  • Tags Tags
    System
aimfail
Messages
1
Reaction score
0
4. Consider a cryptographic system in which a message is list of 5 real numbers: n = [n_1, ... n_5].
The numbers are encrpyted by multiplication with a fixed 5x5 encryption matrix M:
e=[M ]∗n
where "e" is a vector containing the encrypted numbers.
Given
e = [19, 3 , 6 ,11 , 23 ]
and
M=[3 2 1 0 0
0 1 -1 0 1
0 0 1 1 0
1 1 0 1 0
0 5 2 0 -1]
is it possible to find n?
And if yes, find it.

my first thought was just to use row reduction of the matrix:

M=[3 2 1 0 0 19
0 1 -1 0 1 3
0 0 1 1 0 6
1 1 0 1 0 11
0 5 2 0 -1 23]

but a couple of steps later on it just screws up ;(

can anyone help here ?
 
Physics news on Phys.org
What is the condition for the message to be decrypatble? What did you with M to the original message? What do you need to do to get back to it? How would you do that? How do check if it can be done?
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top