Apparently the pattern on the Perserverance lander parachute is encoded in ASCII. How does ASCII work, and how does that encryption in color translate to text?

545 views

Apparently the pattern on the Perserverance lander parachute is encoded in ASCII. How does ASCII work, and how does that encryption in color translate to text?

In: Mathematics

3 Answers

Anonymous 0 Comments

The message is encoded in binary, but not in ASCII. NASA used the simplest possible way to encode letters as numbers (A=1, B=2, etc.) ASCII is also a way to encode letters (and other stuff) as numbers, but there A=65, B=66, etc. because there’s a bunch of other stuff before it in the sequence like punctuation and control characters.

So the actual message is 4 1 18 5 (DARE) 13 9 7 8 20 25 (MIGHTY) 20 8 9 14 7 19 (THINGS), but the numbers are in binary. There are lots of sources that will tell you how binary works, but all you need to understand this is to know that in a 4-digit binary number:

If the rightmost digit is 1, add 1

If the digit second to the right is 1, add 2

If the digit third to the right is 1, add 4

If the digit fourth to the right is 1, add 8

If the digit fifth to the right is 1, add 16

So the binary number 11001 is 16 + 8 + 1= 25 = Y

Instead of writing 0s and 1s, NASA instead colored some sections of the parachute red to indicate a 1.

The last step in decoding it was figuring out how to “read” the parachute. Someone eventually discovered (probably after trying a bunch of different things) that they should read in lines from the outside to the inside, moving clockwise, then break the digits up into groups of 10. There’s no particular reason to encode it this way other than the fact that NASA also wanted to encode the GPS coordinates of the JPL on the outermost part of the parachute and because just “Dare mighty things” would only take about 100 segments, while the whole parachute had many more (probably for good engineering reasons that weren’t going to be ignored for a little secret message).

You are viewing 1 out of 3 answers, click here to view all answers.