Exercise 3.09: Basics of the Viterbi Algorithm
The graph shows a trellis diagram and simultaneously defines the cumulative error values ("metrics") Γi(S0) and Γi(S1) at times i=0 to i=5.
From this trellis can be read, for example:
- the code rate R,
- the memory m,
- the free distance dF,
- the information sequence length L,
- the sequence length L′ including the termination.
In the exercise it is further necessary to clarify:
- the meaning of the final error value Γ5(S0),
- effects of one and two transmission errors, respectively.
Hint: This exercise belongs to the chapter "Decoding of Convolutional Codes".
Questions
Solution
- There are 2k⋅m=2 states here. It follows that k=1 and m=1.
- Per coding step, n=2 code bits are output ⇒ R=1/2.
- The information sequence length is L=4.
- Only by one (since m=1) additional termination bit one arrives at the total length L′=5.
(2) The free distance dF is defined as the number of code bits in which two sequences x_ and x′_ differ.
- We choose the zero sequence as the reference sequence:
- x_′=0_=(00,00,00,00,...),
- expressed with the sequence of states: S0→S0→S0→S0→ ...
- One of the sequences x_≠0_, which differs from 0_ only in the minimum number of code bits, follows the path S0→S1→S0→S0→... :
- x_=(11,01,00,00,...)⇒dF=3_.
(3) Only proposition 3 is correct here, because the event "No transmission error" is much more likely than three errors at exactly specified positions. Consider the graph:
- If the zero sequence is sent and this is also received, the Viterbi decoding can be illustrated by the upper trellis.
- The final value of the metric is Γ5(S0)=0, and the Viterbi decoder decides correctly with certainty: z_=x_⇒v_=u_.
- For the lower trellis, we also assume u_=(0,0,0,00)⇒x_=(00,00,00,00,00).
- However, y_=(00,00,00,11,01) is received now.
- Nevertheless, Γ5(S0)=0 holds. The example proves that the first two statements are false.
(4) Correct are all answers: If it is known for sure that only one transmission error occurred, for a convolutional code with free distance dF=3 the Viterbi algorithm works perfectly, no matter at which position the error occurred.
(5) None of the proposed solutions is correct, as can be seen from the second graphic.