Q.1) โ X(z) = ∑ x(n)๐ง −๐ ๐=−โ x(n) = ((4/3)^n)*u(1-n) Therefore, X(z) = ∑ โ 4 n ๐=−โ ((3) ) ∗ u(1 − n) ∗ ๐ง −๐ Since, u(n) = 1 for n>=0 Therefore, u(1-n) = 1 for n<=1 Therefore, X(z) = ∑ 1 4 n ๐=−โ Therefore, X(z) = ∑ โ ๐=−1 ((3) ) ∗ ๐ง −๐ 3 n ((4) ) ∗ ๐ง ๐ Now, we know that the sum of convergent geometric series 1 1 + r + ๐ 2 + ๐ 3 + โฏ = 1−๐ ; when |r| < 1 ----(1) Therefore, X(z) = (3/4 * ๐ง)−1 + 1 3 4 1− ๐ง 16 Therefore, X(z) = 3๐ง∗(4−3๐ง) Also, from (1) above, since |r| < 1 so |(3/4)*z| < 1 This implies that |z| < 4/3 Therefore, ROC is |z| < 4/3 Matlab Code : You can use the following code and check : clc; clear all; close all; n=[-10:1:5]; for i=1:size(n) if(n(i) <= 1) x(i)=(4/3).^n(i); else x(i)=0; end end F = ztrans(x,n,z); disp(F); Q.2) ๐๐ Here, it is given that x(n) = 1/2๐ ∗ cos ( 4 (๐ − 1)) ∗ ๐ข(๐ − 1)Therefore X(z) = โ 1 ,๐ ≥ 1 ∑๐=1 x(n)๐ง −๐ (Since, u(n-1) = { ) 0, ๐๐กโ๐๐๐ค๐๐ ๐ Now, by the convolution property, If two functions x1(n) and x2(n) are multiplied in time domain, it is equivalent to convolution of their respective z-transforms, and vice-versa. ๐๐ Here, x1(n) = 1/2๐ and x2(n) = cos ( 4 (๐ − 1)) Therefore, X1(z) = 1 2 ( )∗๐ง −1 1 2 1−( )∗๐ง −1 and X2(z) = ๐ง∗(√2− 1 )−1 √2 ๐ง 2 −√2๐ง+1 Therefore, the final answer X(z) should be convolution of X1(z) with X2(z). Once we get required X(z), we need to find in terms of partial fractions so that we get proper fractions. So it should look like : ๐0∗๐ง −1 X(z) = r๐ง −1 + 1+๐0๐ง −1 +๐1๐ง −2 + … Thus, we from each of the fractions we find the ROC’s and finally obtain the required ROC using set theory, i.e., ROC = ROC1โ๐ ๐๐ถ2โ๐ ๐๐ถ3 …. The poles and zeroes are plotted by equating denominators and numerators, respectively, to zero. Matlab code : Convolution can be found using command : conv(X1,X2) [r,p,k] = residue(b,a); this command gives partial fraction form of resulting z transform. In order to find pole-zero map, the following can be done : H= tf([2 5 1],[1 2 3]); (the numbers here are just an example of the numerator and denominator coefficients) pzmap(H) Q.3) Here, it is given that x(n) = ((1/2)^n)*u(n) ⇔ ๐(๐ง) We need to find x1(n) ⇔ zX(๐ง −1) We must first find X(z) which comes as Therefore, X(๐ง −1 ) = 1 1 1 1− ๐ง −1 2 1 1− ๐ง 2 ๐ง Therefore, z X(๐ง −1 ) = 1 2 1− ๐ง Now it’s inverse z transform can be found by reducing it to partial fraction. Matlab : In matlab, by giving iztrans( ๐ง 1 2 1− ๐ง ), the inverse z transform can be found. Q.4) This problem is quite easy. Just expand the function X(z) first. Matlab Code : Using iztrans command the inverse z transform can be found and using pzmap, pole-zero map can be plotted. Q.6) First, reduce the given function to partial fraction form. Next, find the inverse z transforms of each of these partial fractions. This gives the inverse z transform of the function (by linearity property). We can plot this x(n) against ‘n’ using the plot(n,x) command specifying the points of ‘n’.