Skip to main content

Information Theory

topicmedium9 MCQ

What is Information Theory?

A measure of the average uncertainty or randomness associated with a random variable. It quantifies the average amount of information needed to specify the outcome of the variable.

Key formula / rule: Entropy of a Discrete Random Variable

Key points

  • Understand the concept of entropy and its calculation.
  • Define and interpret channel capacity.
  • Explain the significance of Shannon's theorems.
  • Relate entropy to data compression limits.

Common exam trap

Confusing entropy with the amount of data transmitted.

Definitions

Term

Entropy

Meaning

A measure of the average uncertainty or randomness associated with a random variable. It quantifies the average amount of information needed to specify the outcome of the variable.

Term

Source Coding

Meaning

The process of representing information from a source using a code, typically aiming for efficient representation (compression) without loss of information.

Term

Channel Capacity

Meaning

The maximum rate at which information can be transmitted reliably over a communication channel. It is a fundamental property of the channel itself.

Term

Mutual Information

Meaning

The amount of information that one random variable contains about another. It represents the reduction in uncertainty about one variable due to knowing the other.

Learning objectives

  • Understand the concept of entropy and its calculation.

  • Define and interpret channel capacity.

  • Explain the significance of Shannon's theorems.

  • Relate entropy to data compression limits.

  • Appreciate the role of Information Theory in communication systems.

Formulae

Name

Entropy of a Discrete Random Variable

Note

Measures the average information content or uncertainty of X. Measured in bits if log base 2 is used.

Expression

H(X) = - Σi=1^{n} p(xi) log₂(p(xi))

Name

Joint Entropy

Note

Measures the uncertainty of the pair (X,Y).

Expression

H(X,Y) = - Σi=1^{n} Σj=1^{m} p(xi, yj) log₂(p(xi, yj))

Name

Conditional Entropy

Note

Measures the remaining uncertainty in Y after X is known.

Expression

H(Y|X) = H(X,Y) - H(X) = - Σi=1^{n} Σj=1^{m} p(xi, yj) log₂(p(yj|xi))

Name

Mutual Information

Note

Measures the amount of information that X provides about Y (and vice versa). It's the reduction in uncertainty.

Expression

I(X;Y) = H(Y) - H(Y|X) = H(X) - H(X|Y) = H(X) + H(Y) - H(X,Y)

Name

Channel Capacity (C)

Note

The maximum mutual information achievable between the channel input X and output Y, maximized over all possible input distributions p(x).

Expression

C = maxp(x) I(X;Y)

Prerequisites

  • Probability and Random Variables

  • Basic Calculus

  • Logarithms

Common mistakes

  • Confusing entropy with the amount of data transmitted.

  • Assuming perfect compression is always achievable.

  • Ignoring the impact of noise when calculating theoretical limits.

  • Misinterpreting channel capacity as the actual achievable rate without coding.

Keywords

  • Information Theory

  • Entropy

  • Source Coding

  • Channel Capacity

  • Shannon's Theorem

  • Mutual Information

  • Data Compression

  • Reliable Communication

Practice preview

  • According to Shannon's First Theorem (Source Coding Theorem), what is the theoretical minimum average number of bits per symbol required to represent a discrete memoryless source?

    medium

  • A source generates symbols with probabilities P(A)=0.5, P(B)=0.25, P(C)=0.125, P(D)=0.125. If Huffman coding is used for this source, what is the average codeword length and the coding efficiency?

    hard

  • What is the unit of information content of a message in information theory?

    easy