(SEM V) THEORY EXAMINATION 2023-24 DIGITAL SIGNAL PROCESSING

B.Tech Engineering 0 downloads
₹29.00

SECTION A – Very Short Questions (2×10 = 20)


(a) Distinguish between IIR and FIR filter.

IIR (Infinite Impulse Response)                    Impulse response is infinite in duration (uses feedback).

Has both poles and zeros.                              Generally lower order for same specs → more efficient.

May be unstable if poles are outside unit circle.

Linear phase is difficult to obtain.                 FIR (Finite Impulse Response)

Impulse response is finite (no feedback, only feed-forward).

Has only zeros (no poles except at origin).      Always stable.

Easy to design exact linear phase.                  Usually higher order for same specs → more multiplications.


(b) Define linear phase response of a filter.

A discrete-time filter has linear phase if its phase response is of the form


ϕ(ω)=−ωn0+ϕ0\phi(\omega) = -\omega n_0 + \phi_0ϕ(ω)=−ωn0​+ϕ0​

i.e. phase is a straight line versus frequency.
This means all frequency components are delayed by the same constant group delayno phase distortion in the signal.


(c) Compare bilinear transformation and impulse invariant method of IIR filter design.

Bilinear Transform (BLT)

Maps analog sss-plane to digital zzz-plane by:

  • s=2T 1−z−11+z−1s = \frac{2}{T}\,\frac{1 - z^{-1}}{1 + z^{-1}}s=T2​1+z−11−z−1​


No aliasing (one-to-one mapping of jΩ to e^{jω}).    Frequency axis is warped → need pre-warping.

Always maps LHP (stable analog) to inside unit circle (stable digital).


Impulse Invariance

Matches time-domain impulse response samples:          hd[n]=ha(nT)h_d[n] = h_a(nT)hd​[n]=ha​(nT).

Simple for low-pass / band-limited analog filters.               Suffers from aliasing in frequency domain.

No frequency warping (straight mapping, but many analog bands fold).


(d) Distinguish between Butterworth and Chebyshev (Type-I) filter.

Butterworth Filter

Magnitude response is maximally flat in passband (no ripple).       Smooth monotonic roll-off.

Slower transition (needs higher order for sharp cut-off).       Equal ripple = 0 in passband & stopband.


Chebyshev Type-I Filter


Has equiripple passband and monotonic stopband.

Sharper transition than Butterworth for same order.                Some passband ripple (controlled by ε).

Group delay and phase are more distorted.


(e) Need for employing window for designing FIR filter.


Ideal frequency responses (e.g. ideal LPF) have infinite-length impulse responses.

To implement in practice, we must truncate to finite length.

Direct, sharp truncation causes Gibbs phenomenon (ripples).


A window function (Hamming, Hanning, Blackman, Kaiser etc.) smoothly tapers the impulse response to zero, which


Controls side-lobe levels (ripple)                                      Controls main-lobe width (transition width)

Gives a trade-off between ripple and bandwidth.


(f) Why simple truncation of the ideal IIR impulse response is usually undesirable?


Abrupt truncation = multiply by a rectangular window.

In frequency domain this becomes convolution with sinc, causing:

Large ripples in passband & stopband (strong Gibbs phenomenon).

Poor control over side-lobes and stopband attenuation.

May distort the desired response and fail specifications.

Better approach: use smoother windows (Hamming, Kaiser…) or optimal methods (e.g. Parks–McClellan).


(g) Develop the 4-point DFT of the sequence x(n)={1,1}x(n) = \{1,1\}x(n)={1,1}.

Assume 4-point sequence:
 

x[0]=1, x[1]=1, x[2]=0, x[3]=0x[0]=1,\ x[1]=1,\ x[2]=0,\ x[3]=0x[0]=1, x[1]=1, x[2]=0, x[3]=0

4-point DFT:

X[k]=∑n=03x[n]e−j2πkn/4,k=0,1,2,3X[k] = \sum_{n=0}^{3} x[n] e^{-j 2\pi kn/4},\quad k=0,1,2,3X[k]=n=0∑3​x[n]e−j2πkn/4,k=0,1,2,3

X[0]=1+1+0+0=2X[0] = 1 + 1 + 0 + 0 = 2X[0]=1+1+0+0=2

X[1]=1+1e−jπ/2=1−jX[1] = 1 + 1 e^{-j\pi/2} = 1 - jX[1]=1+1e−jπ/2=1−j

X[2]=1+1e−jπ=1−1=0X[2] = 1 + 1 e^{-j\pi} = 1 - 1 = 0X[2]=1+1e−jπ=1−1=0

X[3]=1+1e−j3π/2=1+jX[3] = 1 + 1 e^{-j3\pi/2} = 1 + jX[3]=1+1e−j3π/2=1+j

So

X[k]={ 2, 1−j, 0, 1+j }X[k] = \{\,2,\ 1-j,\ 0,\ 1+j\,\}X[k]={2, 1−j, 0, 1+j} 


(h) How is FFT algorithm applied to compute the inverse DFT?
To compute IDFT using FFT:

Use the property:

  1. x[n]=1NIDFT{X[k]}=1N(DFT{X∗[k]})∗x[n] = \frac{1}{N} \text{IDFT}\{X[k]\} = \frac{1}{N}\Big(\text{DFT}\{X^{*}[k]\}\Big)^{*}x[n]=N1​IDFT{X[k]}=N1​(DFT{X∗[k]})∗

where * means complex conjugate.

Steps:

Take conjugate of the DFT sequence X[k]X[k]X[k]. Compute N-point FFT of this conjugated sequence.

Take conjugate of the FFT output.                        Divide each sample by N → gives the IDFT result.

So we reuse the same FFT hardware/software for inverse transform.


(i) Highlight the features of a commercial digital signal processor (DSP).


Common DSP chip features:

Harvard architecture (separate program & data memories).

MAC unit (single-cycle Multiply–Accumulate).

Hardware support for circular buffers (for FIR, IIR).

Zero-overhead looping (no extra cycles for loop control).

Special addressing modes: bit-reversed, modulo, auto-increment/decrement.

On-chip peripherals: ADC/DAC interfaces, serial ports (I²S, SPI), DMA.

Often fixed-point or floating-point arithmetic optimized for real-time signal processing.


(j) Explain the concept of multistage sampling rate conversion.

Multistage sampling rate conversion = performing large sample-rate change as a cascade of several small-factor stages.                            Example: instead of decimating by 12 directly, do

decimate by 3, then by 4 (or 2×2×3),               with suitable anti-alias filters at each stage.


Benefits:


Lower filter order per stage → fewer multiplications.

Overall lower computational complexity than single large-factor converter.

Easier filter design and better control of passband/stopband specs.

Used in sample-rate converters, multirate filter banks, and modern communication systems.

Quick Guidance for Long Questions (Sections B–C)

I won’t fully solve all numericals here, but this is how you should approach them:


Realization questions (cascade/parallel, direct form I/II, ladder)
→ First express H(z)H(z)H(z) as ratio of polynomials in z−1z^{-1}z−1, factor into first/second-order sections, then draw block diagrams.


Analog → digital IIR design (bilinear / impulse invariance)
→ Start from Ha(s)H_a(s)Ha​(s), apply the mapping (BLT or impulse invariance), simplify to get H(z)H(z)H(z), then express in powers of z−1z^{-1}z−1.


FIR design with windows (rectangular, Hamming, Kaiser)
→ Determine ideal impulse response hd[n]h_d[n]hd​[n], apply window w[n]w[n]w[n], then shift to make it causal.


DFT / FFT questions
→ For given time sequence, split into even/odd parts (DIT) or first/second half (DIF), apply butterfly structure.


Overlap-add method
→ Break long input into blocks, convolve each block (via DFT) with h(n)h(n)h(n), then shift and add overlaps.


Multirate & adaptive algorithms (RLS, LMS)
→ Focus on block diagrams, basic equations, advantages, and applications.

File Size
172.95 KB
Uploader
SuGanta International
⭐ Elite Educators Network

Meet Our Exceptional Teachers

Discover passionate educators who inspire, motivate, and transform learning experiences with their expertise and dedication

KISHAN KUMAR DUBEY

KISHAN KUMAR DUBEY

Sant Ravidas Nagar Bhadohi, Uttar Pradesh , Babusarai Market , 221314
5 Years
Years
₹10000+
Monthly
₹201-300
Per Hour

This is Kishan Kumar Dubey. I have done my schooling from CBSE, graduation from CSJMU, post graduati...

Swethavyas bakka

Swethavyas bakka

Hyderabad, Telangana , 500044
10 Years
Years
₹10000+
Monthly
₹501-600
Per Hour

I have 10+ years of experience in teaching maths physics and chemistry for 10th 11th 12th and interm...

Vijaya Lakshmi

Vijaya Lakshmi

Hyderabad, Telangana , New Nallakunta , 500044
30+ Years
Years
₹9001-10000
Monthly
₹501-600
Per Hour

I am an experienced teacher ,worked with many reputed institutions Mount Carmel Convent , Chandrapu...

Shifna sherin F

Shifna sherin F

Gudalur, Tamilnadu , Gudalur , 643212
5 Years
Years
₹6001-7000
Monthly
₹401-500
Per Hour

Hi, I’m Shifna Sherin! I believe that every student has the potential to excel in Math with the righ...

Divyank Gautam

Divyank Gautam

Pune, Maharashtra , Kothrud , 411052
3 Years
Years
Not Specified
Monthly
Not Specified
Per Hour

An IIT graduate having 8 years of experience teaching Maths. Passionate to understand student proble...

Explore Tutors In Your Location

Discover expert tutors in popular areas across India

Zumba Classes Near Sector 131 Greater Noida – Enjoy Dance Fitness and Stay Healthy Noida
SEO Training Near Noida Sector 95 – Learn Search Engine Optimization and Build a Digital Career Noida
Data Analytics Classes Near Kirti Nagar – Build a Future-Ready Career in Data Kirti Nagar, Delhi
🇫🇷 French Language Classes Near Sector 112 Noida – Learn French with Expert Trainers Noida
Spoken English Classes Near Central Park 1 – Improve Confidence and Communication Skills Central Park 2, Gurugram
Spoken English Classes Near By Vasant Kunj Improve Fluency, Build Confidence & Achieve Career Growth in 2026 Vasant Kunj, Delhi
Fitness Training Near By Najafgarh Professional Workout Programs for Strength, Weight Loss & Overall Wellness Najafgarh, Delhi
Baking Classes Near By Dwarka Mor – Learn Professional Baking Skills Dwarka Mor, Delhi
Guitar Classes Near By Green Park Learn Guitar with Expert Trainers & Turn Your Passion into a Lifelong Skill Green Park, Delhi
TOEFL Coaching Near Noida Sector 106 – Complete Guide for Students Preparing to Study Abroad Noida
Zumba Classes Near Palam Vihar – Fun Dance Fitness for a Healthy Lifestyle Palam Vihar, Gurugram
Guitar Classes Near DLF Phase 1 – Learn Guitar from Expert Teachers DLF Phase I, Gurugram
Zumba Classes Near Sector 130 Greater Noida – Enjoy Dance Fitness and Stay Active Sector 130, Noida
Photography Basics Classes Near By Dwarka Mor – Learn the Art Behind the Lens Dwarka Mor, Delhi
Zumba Classes Near Palam Vihar Extension – Dance Your Way to Fitness New Palam Vihar, Gurugram
Digital Marketing Classes Near Noida Sector 96 – Learn Modern Marketing Skills and Build a Successful Career Noida
Yoga Classes (Home or Online) Near Sushant Lok Phase 3 – Transform Your Health Naturally Phase 3 Sushant Lok, Gurugram
Graphic Designing Classes Near Noida Sector 97 – Learn Creative Design Skills and Build Your Career Sector 97, Noida
Music Theory & Composition Near DLF Cyber City – Master the Language of Music DLF Cyber City, Gurugram
Guitar Classes Near Tilak Nagar – Learn, Play & Perform with Confidence Tilak Nagar, Delhi
⭐ Premium Institute Network

Discover Elite Educational Institutes

Connect with top-tier educational institutions offering world-class learning experiences, expert faculty, and innovative teaching methodologies

Réussi Academy of languages

sugandha mishra

Réussi Academy of languages
Madhya pradesh, Indore, G...

Details

Coaching Center
Private
Est. 2021-Present

Sugandha Mishra is the Founder Director of Réussi Academy of Languages, a premie...

IGS Institute

Pranav Shivhare

IGS Institute
Uttar Pradesh, Noida, Sec...

Details

Coaching Center
Private
Est. 2011-2020

Institute For Government Services

Krishna home tutor

Krishna Home tutor

Krishna home tutor
New Delhi, New Delhi, 110...

Details

School
Private
Est. 2001-2010

Krishna home tutor provide tutors for all subjects & classes since 2001

Edustunt Tuition Centre

Lakhwinder Singh

Edustunt Tuition Centre
Punjab, Hoshiarpur, 14453...

Details

Coaching Center
Private
Est. 2021-Present
Great success tuition & tutor

Ginni Sahdev

Great success tuition & tutor
Delhi, Delhi, Raja park,...

Details

Coaching Center
Private
Est. 2011-2020