Skip to main content
Home Wireless Communication Modulation MATLAB Beamforming Project Ideas MIMO Computer Networks Lab 🚀

NET & GATE : Communications (EC) Study Material


Home / Engineering & Other Exams / Communications (EC) Study Material ...

 

NET & GATE: Communications (EC) Study Material


What is an error in a communication system?

In wireless communication, we sometimes receive the wrong bit, i.e., the transmitter sends binary '1', but we're receiving binary '0' on the receiver side. That is called a bit of error. Now, we'll tell you why this error occurs. We are all aware of signal attenuation and additive noise in wireless communication. You also know that we use a threshold level at the receiver to detect '0' or '1'. Anyhow if the signal is much affected by attenuation or noise, then we receive binary '0' instead of '1' and vice versa.

We commonly use the term 'bit error rate' to measure bit error. Bit error rate tells us how many bits are affected among the total number of bits transmitted.


What are the possible remedies to reduce the bit error rate?

Channel Coding



Question

There is a digital communication system that sends a symbol or block of N bits. We expect the error probability in decoding to be 0.0001. But there is N number of bits in a symbol or block. And here, the occurrence of a mistake of any bit is independent of others. If we came to know at least one bit in the block/symbol has been decoded wrongly. Then what probability will the received symbol/block be erroneous?


Answer

Error probability of a bit = 0.0001

So, the probability of being decoded correctly= is 1-0.0001

As there are several bits, so correct probably = (1-0.0001)(1-0.0001)(1-0.0001)...Up To N Times

=(1-0.0001)^N

Erroneous Probability = 1 - correct probability

=1 -  (1-0.0001)^N

 


Maximum Likelihood Decoding or ML Decoding

The decision boundary between two adjacent signal points will be their arithmetic mean.


Question

The S symbol is randomly selected from the S1, S2, S3, and S4 and communicated through a digital communication system. S1=-3, S2=-1, S3=+1, and S4=+2 are given. Y = S + W is the received symbol on the receiver side. W stands for "zero mean unit variance." When the transmitted symbol S = Si, the conditional probability of symbol error for maximum likelihood (ML) decoding is P. P is a Gaussian Random Variable independent of S. The index i with the highest conditional symbol error probability Pi is -----


Answer

As an ML detector is used, the decision boundary between two adjacent signal points will be their arithmetic mean.

For S1= -3, the probability of error, P1,  

As the ML decoder first receives the symbol -3 and then -1, so -2 becomes the decision boundary, as shown in the figure below.



If the signal value lies between -∞ to -2, it is decoded correctly as -3. Otherwise, an error occurs. 

Now, the probability of error, P1 = (1 - yellow-colored area)


For S2, probability of error is P2 (say)


So, P2 = (1 - yellow-colored area)


For S3, probability of error is P3 (say)


P3=(1-yellow-colored area)


For S4, probability of error is P4 (say)


P4 = (1 - yellow-colored area)

In the concussion of the above four graphs, the probability of correctness is less for S3 among the four symbols. So, the possibility of error for S3 is more significant, or P3 is more considerable.


Probability & Information

When the probability of an event is less, then information about that event will be more. 

I(x) is inversely proportional to p(x)

When probability = 1, the information will be zero, and vice versa.

.We commonly use the term 'entropy' in information theory. Entropy denotes the average number of bits required per symbol to transfer information.

For example:

The probability of receiving bit '1' is 0.5 & probability of receiving bit '0' is 0.5 on the receiver side. Then the entropy H(x) is going to be    -0.5*log(0.5) -0.5*log(0.5) = 1 bit/symbol


Electronic Devices

pn junction diodes are used as electronic switches. Diodes only allow unidirectional current flow. When the voltage across the diode goes up to a certain amount (typically 0.7 V), it becomes on (in case of forward bias). On the other hand, reverse bias always remains 'off.' But in the case of the zener diode, if you continuously increase the reverse voltage, then the current flows accordingly. But after a specific reverse voltage, current flow rises sharply in reverse bias mode. This phenomenon is called 'avalanche breakdown.' If you try to increase the reverse voltage further, the voltage doesn't increase; only the current flow increases.

What is bias voltage?
The bias voltage is required for an electrical gadget to turn on and work.
An electronic device couldn't turn on and function without a bias voltage.

Networks, Signal, & Systems

 Superposition Theorem

In the superposition theorem, we calculate the individual response of each independent source on an element or branch. Then we sum up the voltage and current.


Thevenin's Theorem 

In Thevenin's theorem, we basically find the Vth and Rth. Procedure for thevenin's theorem

1. Firstly, we open the circuit, the load 

2. Then we find Vth across the load from the circuit

3. Then, we open the circuit's current source and short-circuit the voltage sources. Remember this step is only applicable to independent sources.

4. Then, we find Rth from the circuit.


RL circuit with source:

i(t) = [ i(0+) - i(∞)]*exp(-Rt/L) + i(∞)

v(t) = [ v(0+) - v(∞)]*exp(-t/RC) + v(∞)

The main functions of the inductor and capacitor in a circuit are to prevent the sudden change of current and voltage, respectively.

Question:

In the above circuit, when the switch is transformed from an off to an on state, the voltage across the capacitor will be the same, but the current direction of the capacitor will be reversed.  

A similar rule is applicable for inductors also. When the switch is transformed from an off to an on state, the voltage across the inductor will be exact, but the current direction will be reversed. 

Question:

Find the rate of rise of voltage across the  capacitor at t = 0+

People are good at skipping over material they already know!

View Related Topics to







Admin & Author: Salim

profile

  Website: www.salimwireless.com
  Interests: Signal Processing, Telecommunication, 5G Technology, Present & Future Wireless Technologies, Digital Signal Processing, Computer Networks, Millimeter Wave Band Channel, Web Development
  Seeking an opportunity in the Teaching or Electronics & Telecommunication domains.
  Possess M.Tech in Electronic Communication Systems.


Contact Us

Name

Email *

Message *

Popular Posts

MATLAB Code for QAM (Quadrature Amplitude Modulation)

  One of the best-performing modulation techniques is QAM [↗] . Here, we modulate the symbols by varying the carrier signal's amplitude and phase in response to the variation in the message signal (or voltage variation). So, we may say that QAM is a combination of phase and amplitude modulation. Additionally, it performs better than ASK or PSK [↗] . In fact, any constellation for any type of modulation, signal set (or, symbols) is structured in a way that prevents them from interacting further by being distinct by phase, amplitude, or frequency. MATLAB Script % This code is written by SalimWirelss.Com % This is an example of 4-QAM. Here constellation size is 4 % or total number of symbols/signals is 4 % We need 2 bits once to represent four constellation points % QAM modulation is the combination of Amplitude modulation plus % Phase Modulation. We map the decimal value of the input symbols, i.e., % 00, 01, 10, 11 to 1 + 1i, -1 + 1i, 1 - 1i, and -1 - 1i, respectively. clc;clear all;...

Star to Delta Conversion and Vice Versa | star delta conversion

The transformation of a star to a delta and a delta to a star circuit is a hot topic in electrical science and engineering. Examiners often ask about the conversion of star to delta and delta to star circuit diagram. When solving complex circuits, the conversion procedure can sometimes ease calculations and save time. Without further ado, we'll go over the characteristics of both a star and a delta circuit. As its title suggests, the star circuit looks like a star. Delta circuit, on the other hand, looks like a delta. Now we'll look at the mathematical method for converting delta to star and star to delta. Delta to Star R1 = RaRb / (Ra + Rb + Rc) R2 = RbRc / (Ra + Rb + Rc) R3 = RaRc / (Ra + Rb + Rc) Use star to delta online converter and vice versa Star to Delta Ra = (R1R2 + R2R3 + R3R1) / R2 Rb = (R1R2 + R2R3 + R3R1) / R3 Rc = (R1R2 + R2R3 + R3R1) / R1 Next Page>>

MIMO, massive MIMO, and Beamforming

  The term 'MIMO' was originally applied to systems with multiple antennas on both the transmitter (Tx) and receiver (Rx) sides. MIMO is a key component of Wi-Fi 4 and 5, 3G, and 4G cellular networks. This method was introduced to increase the capacity of a channel by sending multiple simultaneous data streams through a single channel. All simultaneous data streams in a MIMO system are encoded orthogonally multiplexed, which reduces interference. Massive MIMO is used extensively in 5G to achieve extremely high capacity and to communicate via  beamforming  or directional transmission. 1. Some essential characteristics of a MIMO system 1.1. Spatial Division Multiplexing Access (SDMA) SDMA is a key feature of MIMO, allowing a base station (BS) to communicate with several devices simultaneously (or even using the same frequency) if they are in different locations. There may be no knowledge of channel information at the transmitter. 1.2. Spatial Multiplexing Another essential ...

MATLAB Code for Pulse Width Modulation (PWM) and Demodulation

   Pulse Width Modulation (PWM) MATLAB Script   clc; clear all; close all; fs=5; %frequency of the sawtooth signal fm=5; %frequency of the message signal sampling_frequency = 10e3; a=0.5; % amplitide t=0:(1/sampling_frequency):1; %sampling rate of 10kHz sawtooth=1.01*a.*sawtooth(2*pi*fs*t); %generating a sawtooth wave subplot(4,1,1); plot(t,sawtooth); % plotting the sawtooth wave title('Comparator Wave'); msg=a.*sin(2*pi*fm*t); %generating message wave subplot(4,1,2); plot(t,msg); %plotting the sine message wave title('Message Signal'); for i=1:length(sawtooth) if (msg(i)>=sawtooth(i)) pwm(i)=1; %is message signal amplitude at i th sample is greater than %sawtooth wave amplitude at i th sample else pwm(i)=0; end end subplot(4,1,3); plot(t,pwm,'r'); title('PWM'); axis([0 1 0 1.1]); %to keep the pwm visible during plotting. %% Demodulation % Demodulation: Measure the pulse width to reconstruct the signal demodulated_signal = zeros(size(msg)); for i =...

MATLAB Code for Rank and Condition Number of a Channel Matrix

To assess the signal strengths of various multipaths between TX and RX and enable communication, the rank and condition numbers of a channel matrix are highly helpful characteristics. Signal multipath propagation is a typical occurrence in wireless communication. Phases shift and the signal weakens during this process. We are discussing signal phases in this context. When numerous multipaths arrive at the receiver, the resulting signal may be additive or destructive because of phase alterations. A channel matrix is referred to as a sparse matrix if it only has a few stronger elements and the majority of the other elements are zero. Finding rank and condition number for sparse matrices is important for numerous reasons. That topic has already been covered in another article [ click here ]. We will just talk about the corresponding MATLAB codes here. MATLAB Code for Rank and Condition Number of a Channel Matrix %Author: Salim Wireless For study materials on wireless %com...

Simulation of ASK, FSK, and PSK using MATLAB Simulink

ASK, FSK & PSK HomePage MATLAB Simulation Simulation of Amplitude Shift Keying (ASK) using MATLAB Simulink      In Simulink, we pick different components/elements from MATLAB Simulink Library. Then we connect the components and perform a particular operation.  Result A sine wave source, a pulse generator, a product block, a mux, and a scope are shown in the diagram above. The pulse generator generates the '1' and '0' bit sequences. Sine wave sources produce a specific amplitude and frequency. The scope displays the modulated signal as well as the original bit sequence created by the pulse generator. Mux is a tool for displaying both modulated and unmodulated signals at the same time. The result section shows that binary '1' is modulated by a certain sine wave amplitude of 1 Volt, and binary '0' is modulated by zero amplitude. Simulation of Frequency Shift Keying (FSK) using MATLAB Simulink   Result The diagram above shows t...

BER vs SNR for M-ary QAM, M-ary PSK, QPSK, BPSK, ...

Modulation Constellation Diagrams BER vs. SNR BER vs SNR for M-QAM, M-PSK, QPSk, BPSK, ... 1. What is Bit Error Rate (BER)? The abbreviation BER stands for bit error rate, which indicates how many corrupted bits are received (after the demodulation process) compared to the total number of bits sent in a communication process. It is defined as,  In mathematics, BER = (number of bits received in error / total number of transmitted bits)  On the other hand, SNR refers to the signal-to-noise power ratio. For ease of calculation, we commonly convert it to dB or decibels.   2. What is Signal the signal-to-noise ratio (SNR)? SNR = signal power/noise power (SNR is a ratio of signal power to noise power) SNR (in dB) = 10*log(signal power / noise power) [base 10] For instance, the SNR for a given communication system is 3dB. So, SNR (in ratio) = 10^{SNR (in dB) / 10} = 2 Therefore, in this instance,...