Home > Articles > Engineering > Communications Engineering

This chapter is from the book

Chapter 1 Problems

  • 1.1 This problem gives us practice in thinking about sequences of numbers. For centuries mathematicians have developed clever ways of computing p. In 1671 the Scottish mathematician James Gregory proposed the following very simple series for calculating p:

    fig01-24.jpg

    Thinking of the terms inside the parentheses as a sequence indexed by the variable n, where n = 0, 1, 2, 3, . . ., 100, write Gregory's algorithm in the form

    fig01-25.jpg

    replacing the "?" characters with expressions in terms of index n.

  • 1.2 One of the ways to obtain discrete sequences, for follow-on processing, is to digitize a continuous (analog) signal with an analog-to-digital (A/D) converter. A 6-bit A/D converter's output words (6-bit binary words) can only represent 26 = 64 different numbers. (We cover this digitization, sampling, and A/D converters in detail in upcoming chapters.) Thus we say the A/D converter's "digital" output can only represent a finite number of amplitude values. Can you think of a continuous time-domain electrical signal that only has a finite number of amplitude values? If so, draw a graph of that continuous-time signal.
  • 1.3 On the Internet, the author once encountered the following line of C-language code

    PI = 2*asin(1.0);

    whose purpose was to define the constant p. In standard mathematical notation, that line of code can be described by

    p = 2 · sin–1(1).

    Under what assumption does the above expression correctly define the constant p?

  • 1.4 Many times in the literature of signal processing you will encounter the identity

    x0 = 1.

    That is, x raised to the zero power is equal to one. Using the Laws of Exponents, prove the above expression to be true.

  • 1.5 Recall that for discrete sequences the ts sample period (the time period between samples) is the reciprocal of the sample frequency fs. Write the equations, as we did in the text's Eq. (1–3), describing time-domain sequences for unity-amplitude cosine waves whose fo frequencies are

    1. fo = fs/2, one-half the sample rate,
    2. fo = fs/4, one-fourth the sample rate,
    3. fo = 0 (zero) Hz.
  • 1.6 Draw the three time-domain cosine wave sequences, where a sample value is represented by a dot, described in Problem 1.5. The correct solution to Part (a) of this problem is a useful sequence used to convert some lowpass digital filters into highpass filters. (Chapter 5 discusses that topic.) The correct solution to Part (b) of this problem is an important discrete sequence used for frequency translation (both for signal down-conversion and up-conversion) in modern-day wireless communications systems. The correct solution to Part (c) of this problem should convince us that it's perfectly valid to describe a cosine sequence whose frequency is zero Hz.
  • 1.7 Draw the three time-domain sequences of unity-amplitude sinewaves (not cosine waves) whose frequencies are

    1. fo = fs/2, one-half the sample rate,
    2. fo = fs/4, one-fourth the sample rate,
    3. fo = 0 (zero) Hz.

    The correct solutions to Parts (a) and (c) show us that the two frequencies, 0 Hz and fs/2 Hz, are special frequencies in the world of discrete signal processing. What is special about the sinewave sequences obtained from the above Parts (a) and (c)?

  • 1.8 Consider the infinite-length time-domain sequence x(n) in Figure P1–8. Draw the first eight samples of a shifted time sequence defined by

    xshift(n) = x(n+1).

  • 1.9 Assume, during your reading of the literature of DSP, you encounter the process shown in Figure P1–9. The x(n) input sequence, whose fs sample rate is 2500 Hz, is multiplied by a sinusoidal m(n) sequence to produce the y(n) output sequence. What is the frequency, measured in Hz, of the sinusoidal m(n) sequence?

  • 1.10 There is a process in DSP called an "N-point running sum" (a kind of digital lowpass filter, actually) that is described by the following equation:

    fig01-26.jpg

    Write out, giving the indices of all the x() terms, the algebraic expression that describes the computations needed to compute y(9) when N = 6.

  • 1.11 A 5-point moving averager can be described by the following difference equation:

    Equation P1–1

    eq_p1-1.jpg

    The averager's signal-flow block diagram is shown in Figure P1–11, where the x(n) input samples flow through the averager from left to right.

    Equation (P1–1) is equivalent to

    Equation P1–2

    eq_p1-2.jpg

    1. Draw the block diagram of the discrete system described by Eq. (P1–2).
    2. The moving average processes described by Eqs. (P1–1) and (P1–2) have identical impulse responses. Draw that impulse response.
    3. If you had to implement (using programmable hardware or assembling discrete hardware components) either Eq. (P1–1) or Eq. (P1–2), which would you choose? Explain why.
  • 1.12 In this book we will look at many two-dimensional drawings showing the value of one variable (y) plotted as a function of another variable (x). Stated in different words, we'll graphically display what are the values of a y axis variable for various values of an x axis variable. For example, Figure P1–12(a) plots the weight of a male child as a function of the child's age. The dimension of the x axis is years and the dimension of the y axis is kilograms. What are the dimensions of the x and y axes of the familiar two-dimensional plot given in Figure P1–12(b)?

  • 1.13 Let's say you are writing software code to generate an x(n) test sequence composed of the sum of two equal-amplitude discrete cosine waves, as

    x(n) = cos(2pfonts + f) + cos(2pfonts)

    where ts is the time between your x(n) samples, and f is a constant phase shift measured in radians. An example x(n) when f = p/2 is shown in Figure P1–13 where the x(n) sequence, represented by the circular dots, is a single sinusoid whose frequency is fo Hz.

    Using the trigonometric identity cos(a+b) + cos(ab) = 2cos(a)cos(b), derive an equation for x(n) that is of the form

    x(n) = 2cos(a)cos(b)

    where variables a and b are in terms of 2pfonts and f.

  • 1.14 In your engineering education you'll often read in some mathematical derivation, or hear someone say, "For small a, sin(a) = a." (In fact, you'll encounter that statement a few times in this book.) Draw two curves defined by

    x = a, and y = sin(a)

    over the range of a = –p/2 to a = p/2, and discuss why that venerable "For small a, sin(a) = a" statement is valid.

  • 1.15 Considering two continuous (analog) sinusoids, having initial phase angles of a radians at time t = 0, replace the following "?" characters with the correct angle arguments:

    1. sin(2pfot + a) = cos(?).
    2. cos(2pfot + a) = sin(?).
  • 1.16 National Instruments Corp. manufactures an A/D converter, Model #NI USB-5133, that is capable of sampling an analog signal at an fs sample rate of 100 megasamples per second (100 MHz). The A/D converter has internal memory that can store up to 4x106 discrete samples. What is the maximum number of cycles of a 25 MHz analog sinewave that can be stored in the A/D converter's memory? Show your work.
  • 1.17 In the first part of the text's Section 1.5 we stated that for a process (or system) to be linear it must satisfy a scaling property that we called the proportionality characteristic in the text's Eq. (1–14). Determine if the following processes have that proportionality characteristic:

    1. ya(n) = x(n–1)/6,
    2. yb(n) = 3 + x(n),
    3. yc(n) = sin[x(n)].

    This problem is not "busy work." Knowing if a process (or system) is linear tells us what signal processing principles, and algorithms, can be applied in the analysis of that process (or system).

  • 1.18 There is an often-used process in DSP called decimation, and in that process we retain some samples of an x(n) input sequence and discard other x(n) samples. Decimation by a factor of two can be described algebraically by

    Equation P1–3

    eq_p1-3.jpg

    where index m = 0,1,2,3,. . . The decimation defined by Eq. (P1–3) means that y(m) is equal to alternate samples (every other sample) of x(n). For example:

    y(0) = x(0), y(1) = x(2), y(2) = x(4), y(3) = x(6), . . .

    and so on. Here is the question: Is that decimation process time invariant? Illustrate your answer by decimating a simple sinusoidal x(n) time-domain sequence by a factor of two to obtain y(m). Next, create a shifted-by-one-sample version of x(n) and call it xshift(n). That new sequence is defined by

    Equation P1–4

    eq_p1-4.jpg

    Finally, decimate xshift(n) according to Eq. (P1–3) to obtain yshift(m). The decimation process is time invariant if yshift(m) is equal to a time-shifted version of y(m). That is, decimation is time invariant if

    yshift(m) = y(m+1).

  • 1.19 In Section 1.7 of the text we discussed the commutative property of linear time-invariant systems. The two networks in Figure P1–19 exhibit that property. Prove this to be true by showing that, given the same x(n) input sequence, outputs y1(n) and y2(n) will be equal.

  • 1.20 Here we investigate several simple discrete processes that turn out to be useful in a number of DSP applications. Draw the block diagrams, showing their inputs as x(n), of the processes described by the following difference equations:

    1. a 4th-order comb filter: yC(n) = x(n) – x(n–4),
    2. an integrator: yI(n) = x(n) + yI(n–1),
    3. a leaky integrator: yLI(n) = Ax(n) + (1–A)yLI(n–1) [the scalar value A is a real-valued constant in the range 0 < A < 1],
    4. a differentiator: yD(n) = 0.5x(n) – 0.5x(n-2).
  • 1.21 Draw the unit impulse responses (the output sequences when the input is a unit sample impulse applied at time n = 0) of the four processes listed in Problem 1.20. Let A = 0.5 for the leaky integrator. Assume that all sample values within the systems are zero at time n = 0.
  • 1.22 DSP engineers involved in building control systems often need to know what is the step response of a discrete system. The step response, ystep(n), can be defined in two equivalent ways. One way is to say that ystep(n) is a system's response to an input sequence of all unity-valued samples. A second definition is that ystep(n) is the cumulative sum (the accumulation, discrete integration) of that system's unit impulse response yimp(n). Algebraically, this second definition of step response is expressed as

    fig01-27.jpg

    In words, the above ystep(n) expression tells us: "The step response at time index n is equal to the sum of all the previous impulse response samples up to and including yimp(n)." With that said, what are the step responses of the four processes listed in Problem 1.20? (Let A = 0.5 for the leaky integrator.) Assume that all sample values within the system are zero at time n = 0.

  • 1.23 Thinking about the spectra of signals, the ideal continuous (analog) squarewave s(t) in Figure P1–23, whose fundamental frequency is fo Hz, is equal to the sum of an fo Hz sinewave and all sinewaves whose frequencies are odd multiples of fo Hz. We call s(t) "ideal" because we assume the amplitude transitions from plus and minus A occur instantaneously (zero seconds!). Continuous Fourier analysis of the s(t) squarewave allows us to describe this sum of frequencies as the following infinite sum:

    fig01-28.jpg

    Using a summation symbol, we can express squarewave s(t) algebraically as

    fig01-29.jpg

    for n = odd integers only, showing s(t) to be an infinite sum of sinusoids.

    1. Imagine applying s(t) to a filter that completely removes s(t)'s lowest-frequency spectral component. Draw the time-domain waveform at the output of such a filter.
    2. Assume s(t) represents a voltage whose f o fundamental frequency is 1 Hz, and we wish to amplify that voltage to peak amplitudes of ±2A. Over what frequency range must an amplifier operate (that is, what must be the amplifier's passband width) in order to exactly double the ideal 1 Hz squarewave's peak-peak amplitude?
  • 1.24 This interesting problem illustrates an illegal mathematical operation that we must learn to avoid in our future algebraic activities. The following claims to be a mathematical proof that 4 = 5. Which of the following steps is illegal? Explain why.

    Proof that 4 = 5:

    • Step 1: 16 – 36 = 25 – 45
    • Step 2: 42 – 9 · 4 = 52 – 9 · 5
    • Step 3: 42 – 9 · 4 + 81/4 = 52 – 9 · 5 + 81/4
    • Step 4: (4 – 9/2)2 = (5 – 9/2)2
    • Step 5: 4 – 9/2 = 5 – 9/2
    • Step 6: 4 = 5

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020