Skip to content
Snippets Groups Projects
Commit 034fe1b5 authored by Erik Strand's avatar Erik Strand
Browse files

Answer most of 15.4

parent 1a1c4c73
Branches
No related tags found
No related merge requests found
...@@ -179,12 +179,26 @@ corrupted by additive uncorrelated white noise. ...@@ -179,12 +179,26 @@ corrupted by additive uncorrelated white noise.
{:.question} {:.question}
For an order 4 maximal LFSR work out the bit sequence. For an order 4 maximal LFSR work out the bit sequence.
Table (13.1) indicates that a maximal LFSR of order 4 is $$x_n = x_{n-1} + x_{n-4}$$. The bit
sequence has to repeat in a cycle of length $$2^4 - 1 = 15$$. The bits are 1, 1, 1, 1, 0, 1, 0, 1,
1, 0, 0, 1, 0, 0, 0.
### (b) ### (b)
{:.question} {:.question}
If an LFSR has a chip rate of 1GHz, how long must it be for the time between repeats to be the age If an LFSR has a chip rate of 1GHz, how long must it be for the time between repeats to be the age
of the universe? of the universe?
The age of the universe is 13.7 billion years, which is about $$\num{43e16}$$ seconds.
$$
\begin{align*}
(2^N - 1) \cdot 10^{-9} \si{s} = \num{43e16} \si{s} \\
(2^N - 1) = \num{43e25}
N = 88.5
\end{align*}
$$
### (c) ### (c)
{:.question} {:.question}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment