Skip to main content

TO ERR IS HUMAN; TO CORRECT IS MACHINE

 


  Sometimes CD and DVD get scratched .  The signal sent from satellite and space ships may be corrupted.  Information sent over the INTERNET is prone to error.  The mistakes that creep in 'the credit card numbers and the amount of money entered in mobiles' would be costly and dangerous.  There is a technique to detect and correct errors.  We will go through it with a simple example. 
 I want to transmit a 16 digit credit card number error free.

The number is 5196 2017 2486 8720

Transmission:

Step 1.
Split the number into 4 blocks of 4 digit each and arrange them as 4x4 matrix.

5196
2017
2486
8720

Step 2:
The sum of the digits in the first row  5+1+9+6 = 21.  Throw the first digit in the sum and retain the second digit,  21 = 1.  This "1" is called check-sum which plays an important role in error correcting.  Find the check-sums for each row as well as each column.

5196 1
2017 0
2486 0
8720 7
7209

Step 3:
Now we have 24 digits.  Rearrange them as a single line.  That is, writing from left to right and from top to bottom.
519612017024860872077209
Then transmit the message.

RECEPTION

 Step 1:
Receive the 24 digit message and lay them out as 5x5 matrix.  There may be error in the received message.
519612014024860872077209

5196 1
2014 0
2486 0
8720 7
7209
Remember the last row and the column is check sum.

Step2:
Calculate the check sum for all the rows and columns for the received message and write them beside the received check-sums.

5196 11
2014 07
2486 00
8720 77
7209 check-sums 
7206

Step 3:
If received and  calculated check-sums tallies, the message is correct.

In our example check-sum of the second row and the fourth column does not tally.  It pinpoints that there is error in the digit "4".  From the check-sums, we understand that the difference is 3.  So we make 4 into 7 and now everything tallies.  So the error is detected and corrected.

     We know alphabets can be represented as digits.  Hence this method can also be applied to any language sentence.  If the message is more than 16 digits long, it can be split into chunks of 16 digits.
This algorithm can also be applied to picture,audio,video.

     Thanks for the error correction.  Since we are able to enjoy HD movie on the tablet.  

Comments

Popular posts from this blog

Your heart -you do not know

  Size and Location: The human heart is roughly the size of a clenched fist and is located slightly to the left of the center of the chest. Despite its relatively small size, the heart plays a crucial role in pumping blood throughout the entire body. Heartbeat Variability: The heart does not beat at a constant rate. The interval between heartbeats can vary, and this variability is considered a sign of a healthy heart. Factors such as breathing, emotions, and physical activity influence the heartbeat. Electrical Conduction: The heart's contractions are controlled by electrical impulses. The sinoatrial (SA) node, often called the "natural pacemaker," generates electrical signals that regulate the heartbeat and coordinate the pumping of blood. Blood Pumping Capacity: On average, the human heart pumps about 2,000 gallons (or 7,570 liters) of blood each day. Over a lifetime, this amounts to pumping enough blood to fill several Olympic-sized swimming pools. Heart Chambers and V...

THE WORK HORSE "="

    One cannot think of  a mathematical step without 'is equal to ' .  It balances right hand side and left hand side.  It aids simplification and manipulation of a mathematical expression. example: 2(A+B)  = C 2A+2B  = C         2A = C-2B           A = C-2B/ 2   In an electronic calculator,  the pressing of ' = " sign executes an asthmatic expression  or simply calculates.       In computer languages, it plays very important role.                                                                 A = B   When a computer looks at this expression, the value stored in the location named B is just transferred to the storage named A .  After execution both A and B will have the same value an...

How does your smart phone detect motion, steps, rotation, and location?

 How it works-1  An accelerometer in a smartphone is a microelectromechanical system (MEMS) device that measures acceleration and tilt. It works by detecting changes in motion by measuring the vibration or acceleration of the device. The accelerometer consists of a small mass suspended on a spring inside a sealed chamber. When the device is subjected to acceleration, the mass moves relative to the device, causing a change in capacitance that can be measured and processed by the smartphone's hardware. The accelerometer measures acceleration in three dimensions (x, y, and z) and provides data that the smartphone's software can use to determine the device's orientation, detect motion, and track changes in velocity and acceleration. The accelerometer is used for a variety of purposes in a smartphone, including screen rotation, motion tracking for games and fitness apps, and detecting the position of the device for navigation and location services. Additionally, it can be used t...