Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Electrical & Electronics Expert

Question (1) A random process Y(t) consists of a dc component of √(3/2) volts, a periodic component g(t), and a random component X(t). The autocorrelation function of Y(t) is shown below.
(a) What is the average power of the periodic component g(t)?
(b) What is the average power of the random component X(t)?

916_Data communication.png

Question (2) A random telegraph signal X(t) is characterized by the autocorrelation function:

RX = exp(-2v|Τ|)

where v is a positive constant. This random signal is applied to the low-pass RC filter shown in the figure. Determine the power spectral density and autocorrelation function of the random process at the filter output.

2109_Data communication1.png

Question (3) A white Gaussian noise process of zero mean and power spectral density N0/2 is applied to the input of high-pass RL filter shown in the figure.

185_Data communication2.png

(a) Find the power spectral density and autocorrelation function of the random process ate the filter output.

(b) What are the mean and variance of this output?

Question (4) Consider a digital communication receiver where the sample presented to the decision making device when a binary symbol "0" is transmitted can be modeled as:

YT = - A + WT

where WT is a sample of white Gaussian random process with zero mean and power spectral density N0/2. Given the decision threshold is zero as shown in the figure:

1882_Data communication3.png

(a) Determine the mean and variance of the random variable yT.

(b) Write an expression of the probability density function (pdf) of YT, fY(YT) in terms of A and (N0/2).

(c) Show that the probability that the decision making device makes an error (i.e., decides "1" was transmitted instead of "0") can be written as:

Pe0 = Q(A/√(N0/2))

where Q(u) is the Q-function given by: Q(u) = 1/√(2Π) u exp(-z2/2)dz

(d) The following MATLAB script simulates the detection process using 100 million observations of YT when A = 1 and (N0/2) = 0.5. It calculates the probability of error by counting the number of times an error occur (Pe) and by integrating the pdf (Peh). The pdf was estimated from the histogram of the 100 million observations.

i. Run the code and report Pe, Peh, and figure of the estimated pdf.

ii. Change (N0/2) to 0.1. Repeat (i) above. Compare your results.

iii. Change (N0/2) back to 1 and make A = 5. Repeat (i) above. Compare your results.

iv. Plot Pe versus A2/(N0/2) in the range from 1 to 100 (e.g., make A =1 and change (N0/2) from 1 down to 0.01 in steps of 0.001. You need to add a loop to the code.

v. Compare the results you obtained in (iii) to the analytical expression developed in (c) by plotting Pe and Pe0 versus A2/(N0/2) in the range from 1 to 100 on the same figure.

You need to express the Q-function given in part (c) in terms of the built-in MATLAB function erfc.

For parts (iv) and (v) use built-in MATLAB function loglog to produce the figures.

% 30/1/2016
% ELEG390 HW2 Q4: Detection of a binary symbol transmitted over AWGN channel clear all;close all;clc;
n=1e8; % Number of observations
A=1; % Pulse Amplitude N0_over_2=0.5; % Noise Variance
wT=sqrt(N0_over_2)*randn(n,1); % Gaussian noise with zero mean and variance N0/2 yT=-A+wT; % n observed samples when transmitted symbol is "0"
de=yT>0; % decision
Pe=length(find(de))/n; % Empirical Probability of error
%======================================================================================
% Estimating the Probability of error from the pdf
%=================================================
[fy1,yt] = hist(yT,1000); % Histogram of yT
fy=fy1/n; % Estimate of the pdf of yT: fy(yT) Peh=sum(fy(find(yt>0))); % Probability of error estimated from the pdf figure(1)
plot(yt,fy,'linewidth',2) ylabel 'f_y(y_T)'
xlabel 'y_T' grid on
title 'pdf of y_T'
%======================================================================================

Question (5) Using the message signal:

m(t) = 1/(1+t2)

Determine and sketch the modulated waves for the following modulation methods

(a) Amplitude Modulation with 50 percent modulation

(b) Double-sideband suppressed carrier (DSB-SC) modulation.

Question (6) Consider a message signal m(t) with the spectrum shown in the figure. The signal has a bandwidth of W = 1 kHz. This signal is applied to product modulator together with a carrier wave A??cos(2Πfct) producing DSB-SC modulated signal s(t). The modulated signal is applied then to a coherent detector. Assuming perfect synchronism between the carrier waves in the modulator and detector, determine the spectrum of the detector output when (a) fc = 1.25 kHz and (b) fc = 0.75 kHz. What is the lowest carrier frequency to avoid side-band overlap?

190_Data communication4.png

Question (7) A DSC-SC modulated signal is transmitted over a noisy channel with power spectral density shown in the figure below. The message bandwidth is 4 kHz and the carrier frequency is 200 kHz. Assuming the average power of the modulated wave is 10 Watts, determine the output SNR of the coherent receiver with bandpass filter bandwidth of 8 kHz.

1252_Data communication5.png

Electrical & Electronics, Engineering

  • Category:- Electrical & Electronics
  • Reference No.:- M91639669
  • Price:- $75

Priced at Now at $75, Verified Solution

Have any Question?


Related Questions in Electrical & Electronics

Case studythis assignment consists of a written report of

CASE STUDY This assignment consists of a written report of approximately 1000 words and any diagrams in which you are asked to critically compare different process methods used to achieve the same result and show an awar ...

Question 1 in the voltage regulator circuit in figure p221

Question 1: In the voltage regulator circuit in Figure P2.21, V 1 = 20 V, V Z = 10 V, R i = 222Ω and P z (max) = 400 mW. (a) Determine I L, I z , and I L , if R L = 380Ω. (b) Determine the value of R L , that will establ ...

Research report1 read 3 to 4 journal articles about

Research report 1. Read 3 to 4 journal articles about digital control or industrial control, eg. one particular application, implementation aspect such as selection of sampling time, hardware etc. No text book example is ...

Problems -problem 1 - find v0 in the op amp circuit of fig

Problems - Problem 1 - Find v 0 in the op amp circuit of Fig. 1. Problem 2 - Compute i 0 (t) in the op amp circuit in Fig. 2 if v s = 4 cos(10 4 t). Problem 3 - If the input impedance is defined as Z in = v s /I s , find ...

Problem 1given a sequence xn for 0lenle3 where x0 1 x1 1

Problem # 1: Given a sequence x(n) for 0≤n≤3, where x(0) = 1, x(1) = 1, x(2) = -1, and x(3) = 0, compute its DFT X(k). (Use DFT formula, don't use MATLAB function) Problem # 2: Use inverse DFT and apply it on the Fourier ...

Questions -problem 1 - a series rlc network has r 2 komega

Questions - Problem 1 - A series RLC network has R = 2 kΩ, L = 40 mH and C = 1μF. Calculate the impedance at resonance and at one-fourth, one-half, twice, and four times the resonant frequency. Problem 2 - Design a serie ...

Assignment - power distribution system transformerscomplete

Assignment - Power Distribution System Transformers Complete your calculations, drawings, and answers, neatly handwritten on these sheets and hand in at the start of lecture in week 6. Absolutely no late submissions will ...

Electrical engineering questions -q1 two ideal voltage

Electrical Engineering Questions - Q1. Two ideal voltage sources designated as machines 1 and 2 are connected, as shown in the figure below. Given E 1 = 65∠0 o V, E 2 = 65∠30 o V, Z = 3Ω. Determine if Machine 1 is genera ...

Problem 1 a two-phase servomotor has rated voltage applied

Problem 1: A two-phase servomotor has rated voltage applied to its excitation winding. The torque speed characteristic of the motor with Vc = 220 V, 60 Hz applied to its control phase winding is shown in Fig.1. The momen ...

Questions -q1 a single-phase transformer rated 21 kv130 v

Questions - Q1. A single-phase transformer rated 2.1 kV/130 V, 7.8 kVA has the following winding parameters: r1= 0.7Ω, x1 = 0.9Ω, r2 = 0.04Ω and x2 = 0.05Ω. Determine: a. The combined winding resistance ________ Ω and le ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As