Concept explainers
With respect to the periodic waveform sketched in Fig. 17.30, let gn(t) represent the Fourier series representation of f(t) truncated at n. [For example, if n = 1, g1(t) has three terms, defined through a0, a1 and b1.] (a) Sketch g2(t), g3(t), and g5(t), along with f(t). (b) Calculate f (2.5), g2(2.5), g3(2.5), and g5(2.5).
■ FIGURE 17.30
(a)
Sketch
Answer to Problem 8E
The sketch for
Explanation of Solution
Given data:
Refer to Figure 17.30 in the textbook.
Formula used:
Write the general expression for Fourier series expansion.
Write the general expression for Fourier series coefficient
Write the general expression for Fourier series coefficient
Write the general expression for Fourier series coefficient
Write the expression to calculate the fundamental angular frequency.
Here,
Calculation:
In the given Figure 17.29, the time period is
Substitute 6 for T in equation (5) to find
Substitute 6 for T in equation (2) to find the value of coefficient
Simplify the above equation as follows,
Substitute 6 for T in equation (3) to find the value of coefficient
The above equation as follows,
Substitute equation (6) in equation (7) as follows,
Now finding the Fourier coefficient
Substitute 6 for T in equation (4) to find the value of coefficient
The above equation as follows,
Substitute equation (6) in equation (9) as follows,
Substituting the value of
The function
For
Therefore, equation (11) will be as follows,
Simplify the above equation as follows,
Similarly, for
Therefore, equation (11) will be as follows,
From equation (12), the above equation is written as,
Similarly, for
Therefore, equation (11) will be as follows,
From equation (13), the above equation is written as,
MATLAB code to sketch for
t=-5:0.01:5;
g2=1.667-0.275*cos(3.141*t/3)+0.159*sin(3.141*t/3)+0.137*cos(2*3.141*t/3)-0.238*sin(2*3.141*t/3);
g3=1.667-0.275*cos(3.141*t/3)+0.159*sin(3.141*t/3)+0.137*cos(2*3.141*t/3)-0.238*sin(2*3.141*t/3)+0.212*sin(pi*t);
g5=1.667- 0.275*cos(3.141*t/3)+0.159*sin(3.141*t/3)+0.137*cos(2*3.141*t/3)-0.238*sin(2*3.141*t/3)+0.212*sin(pi*t)-0.069*cos(4*pi*t/3)-0.119*sin(4*pi*t/3)+0.055*cos(5*pi*t/3)+0.0318*sin(5*pi*t/3);
plot(t,g2,t,g3,t,g5)
legend({'g2','g3','g5'},'Location','best')
xlabel('Time t in sec')
ylabel('The values g2, g3, and g5')
title('Plots for g2,g3, and g5')
MATLAB output: The MATLAB output shown in Figure 1.
MATLAB code to sketch for
t=linspace(-5,5,1000); % vector for time over 1000 points.
T=6; % Period
w0=2*pi/T; % natural frequency, is w0=2*pi.
f0=1.667; % constant.
N=40;
for i=1:1000;
sum=0;
for n=1:N;
sum=sum+(1/n*pi)*(sin(n*pi) -sin(2*n*pi/3))*cos(n*pi*t(i)/3) + (1/n*pi)*(cos(2*n*pi/3) -cos(n*pi))*sin(n*pi*t(i)/3);
end
f40(i)=f0+sum;
end
plot(t,f40)
xlabel('Time t in seconds')
ylabel('Value of function f(t)')
plot_ttle = ['Fourier Series representation of function f(t) for N = ',num2str(N)];
title(plot_ttle);
MATLAB output: The MATLAB output shown in Figure 2.
MATLAB code to sketch for
t=linspace(-5,5,1000); % vector for time over 1000 points.
T=6; % Period
w0=2*pi/T; % natural frequency, is w0=2*pi.
f0=1.667; % constant.
N=40; % consider N=40 for instant.
for i=1:1000;
g2=1.667-0.275*cos(3.141*t(i)/3)+0.159*sin(3.141*t(i)/3)+0.137*cos(2*3.141*t(i)/3)-0.238*sin(2*3.141*t(i)/3);
g3=1.667-0.275*cos(3.141*t(i)/3)+0.159*sin(3.141*t(i)/3)+0.137*cos(2*3.141*t(i)/3)-0.238*sin(2*3.141*t(i)/3)+0.212*sin(pi*t(i));
g5=1.667-0.275*cos(3.141*t(i)/3)+0.159*sin(3.141*t(i)/3)+0.137*cos(2*3.141*t(i)/3)-0.238*sin(2*3.141*t/3)+0.212*sin(pi*t)-0.069*cos(4*pi*t(i)/3)-0.119*sin(4*pi*t(i)/3)+0.055*cos(5*pi*t(i)/3)+0.0318*sin(5*pi*t(i)/3);
end
for i=1:1000;
sum=0;
for n=1:N;
sum=sum+(1/n*pi)*(sin(n*pi) -sin(2*n*pi/3))*cos(n*pi*t(i)/3) + (1/n*pi)*(cos(2*n*pi/3) -cos(n*pi))*sin(n*pi*t(i)/3);
end
f40(i)=f0+sum;
end
plot(t,g2,t,g3,t,g5,t,f40)
legend({'g2','g3','g5','f40'},'Location','best')
xlabel('Time t in sec')
ylabel('The values g2, g3, g5 and f40')
title('Plots for g2, g3, g5 and f40')
MATLAB output:
Conclusion:
Thus, the sketch for
(b)
Find the function
Answer to Problem 8E
The value of
Explanation of Solution
Given data:
Refer to Figure 17.30 in the textbook.
Calculation:
From Part (a), the function
Finding
From Part (a),
Finding
From Part (a),
Finding
From Part (a),
Finding
Conclusion:
Thus, the value of
Want to see more full solutions like this?
Chapter 17 Solutions
Loose Leaf for Engineering Circuit Analysis Format: Loose-leaf
Additional Engineering Textbook Solutions
BASIC BIOMECHANICS
Database Concepts (8th Edition)
Electric Circuits. (11th Edition)
Concepts Of Programming Languages
Mechanics of Materials (10th Edition)
Thermodynamics: An Engineering Approach
- 2) Periodic signal x(t) which is shown in Figure-1 is applied to a LTI system with impulse response h: h(t) = 3 8 (t) + 2 e -4' u(t) Find the output y(t) using the Fourier Series of x(t) and h(t). LTI x(t) y(t) h(t)arrow_forwardPlease use pen and paper to solve this question....(communication system)arrow_forwardConsider the periodic signal r(t) shown below: x(t) (a) Derive the Fourier series coefficients a for the signal x(t). To receive full credit, you must show all work. (In other words, you can use a table to check your results, but you will not receive full credit unless you show how the coefficients are derived.) (b) The signal x(t) (shown on the previous page) is the input to an LTI system with the frequency response H(jw) shown below (magnitude and phase plots): |H(jw)| LH(jw) = - 10 -207 -107T +107 +207 Determine the output y(t) of this system when the input is æ(t). 2.arrow_forward
- 6. For each of the following Fourier transform F(@), state whether the corresponding inverse Fourier transform f(t) is periodic or not, and explain why. If periodic, determine its fundamental period. (b) F(@) -3n -2n –n 0 n 2n 3narrow_forwardPrinciples of communication .I would like to understand the details of the method for doing this. Thank you in advance for your answer.arrow_forwarda) Explain with the aid of sketches the meaning of the following terms, as related to periodic waveforms. i) Even symmetry i) Odd symmetry ii) Half wave symmetry b) Determine the Fourier series of the following function: - f(t) = 3 f(t) = 5 0arrow_forwardThe periodic signal x(t) is shown in the following figure. It is a rectangular pulse repeated every 4 seconds. a) Write the mathematical representation of x(t) b) What is the Fourier Transform of x(t)? c) Sketch X(@), showing the important parameters. Make sure you show the magnitude of X(@) at w = 0.arrow_forwardEENG226-Signals and Systems Please solve it very quickly ??arrow_forwardHi, the attached image shows a question and its answer but still, I couldn't understand it please simply explain itarrow_forwardThis is a practice question from the Signal and Systems course of my Electrical Engineering Program. Could you please walk me through the steps for solving this? Thank you for your assistance.arrow_forwardConsider the one-sided exponential function fi(t) u(t) is the unit step function, a > 0, and A > 0. (1) (ii) (iv) You may assume the relationship: d dr Sketch the waveform of the signal, fi(t), marking the axis carefully. Calculate the Fourier transform of fi(t). Calculate the energy, E₁, in the signal fi(t). Determine the frequency wm such that the energy contributed by the spectral components of all the frequencies w such that w|≤ wm is 95% of the total signal energy E₁. tan -1 (²) = = = = Ae-at u(t), where a a² + x²arrow_forwardPeriodic signal x(t) which is shown inarrow_forwardarrow_back_iosSEE MORE QUESTIONSarrow_forward_ios
- Introductory Circuit Analysis (13th Edition)Electrical EngineeringISBN:9780133923605Author:Robert L. BoylestadPublisher:PEARSONDelmar's Standard Textbook Of ElectricityElectrical EngineeringISBN:9781337900348Author:Stephen L. HermanPublisher:Cengage LearningProgrammable Logic ControllersElectrical EngineeringISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
- Fundamentals of Electric CircuitsElectrical EngineeringISBN:9780078028229Author:Charles K Alexander, Matthew SadikuPublisher:McGraw-Hill EducationElectric Circuits. (11th Edition)Electrical EngineeringISBN:9780134746968Author:James W. Nilsson, Susan RiedelPublisher:PEARSONEngineering ElectromagneticsElectrical EngineeringISBN:9780078028151Author:Hayt, William H. (william Hart), Jr, BUCK, John A.Publisher:Mcgraw-hill Education,