Use verification methods (visual checking, double entry, parity check)

1. Data Processing and Information

Verification Methods

When we process data, we want to make sure it’s correct. Think of it like checking your homework before turning it in. We use three main methods:

  • Visual checking (🔍)
  • Double entry (🔁)
  • Parity check (⚖️)

1.1 Visual Checking

Just look at the data and spot any obvious mistakes. It’s like reading a sentence to catch typos.

Example: In a list of student grades, you might notice a “9” where all others are “8” or “10”.

1.2 Double Entry

Enter the same data twice, possibly by two different people, and then compare the results.

Entry 1 Entry 2 Match?
Alice – 85 Alice – 85 ??
Bob – 92 Bob – 93

When a mismatch occurs, you investigate and correct the error.

1.3 Parity Check

Parity is a quick way to detect errors in binary data. We add a “parity bit” so that the total number of 1‑bits is even (even parity) or odd (odd parity).

Formula: $P = \left(\sum_{i=1}^{n} d_i\right) \bmod 2$

Example: For the 4‑bit data 1011, the sum of 1‑bits is 3 (odd). To use even parity, we add a parity bit of 1, giving 10111.

During transmission, the receiver recalculates parity. If it doesn’t match, an error is flagged.

Examination Tips

  • Remember the difference between visual checking (quick look‑over) and double entry (two independent records).
  • When asked to explain parity check, write the parity formula and give a short example.
  • Use emojis or simple analogies in your notes to make the concepts memorable.
  • Practice drawing a small table for double entry and a parity bit example.
  • Check that your LaTeX is correctly formatted: $...$ for inline, $$...$$ for block.

Revision

Log in to practice.

0 views 0 suggestions