Question

In: Advanced Math

3) Find the Fourier series of ?(?), which is assumed to have the period 2?. Specify...

3) Find the Fourier series of ?(?), which is assumed to have the period 2?. Specify the relationships for Fourier coefficients, and illustrate the pattern for the first several terms within the series ?(?). You may use software to solve for the integrals, but show the complete result and illustrate the simplification process to a reduced form. [35 pts]   

?(?) = ?2    (0 < ? < 2?)   

Solutions

Expert Solution

We have obtained the Fourier series expansion of the given function and plotted first fer terms using MATLAB (code attached).

MATLAB code:

function fourier_cal(N)
  
% N is the number of terms in Fourier series;
  
L1=0; % lower limit of the interval;
L2=2*pi; % upper limit of the interval;
L=(L2-L1)/2; % Mid-point of the interval;
  
f1 = @(t) t.^2; % Original function;
an = @(n,t) (cos(n.*t*pi/L))*( 4/(n.^2) ); % an*cos(nx);
bn = @(n,t) (sin(n.*t*pi/L))*( -4*pi/n ); % bn*sin(nx);
a0=(8*pi*pi/3);
  
t=L1:0.001:L2;
f_original=f1(t);
f_fourier=0*t;
  
for i=1:numel(t)
for n=1:N
f_fourier(i)=f_fourier(i)+an(n,t(i))+bn(n,t(i));
end
f_fourier(i)=f_fourier(i)+0.5*a0;
end
  
plot(t,f_original,'-b',t,f_fourier,'--r');
xlabel('x')
ylabel('f(x)')
legend('Actual function','Fourier Series')
title('Actual function vs Fourier Series')
  
end


Related Solutions

Find the fourier series of the following a. ?(?) = 1 + ? ; −? ≤...
Find the fourier series of the following a. ?(?) = 1 + ? ; −? ≤ ? < ? b. ?(?) = { 1 0 ≤ ? < 2 −1 2 ≤ ? < 4 c. ?(?) = ? 2 + 1 ; −1 ≤ ? < 1 help guys struggling student here thankies
a) Find the discrete Fourier series (DFS) representation of x((n))10, where 10 denotes the period and...
a) Find the discrete Fourier series (DFS) representation of x((n))10, where 10 denotes the period and x(n) is given by: ?(?) = { 1, ??? 0 ≤ ? ≤ 5 0, ??? ??ℎ?? ? b) For the following two causal sequences (both starting at n = 0), find the circular convolution of minimum size that will produce the same result as h(n)*x(n). h(n) = {1, 1, 1, 1}, x(n) = {0, 0, 1, 1}
find Fourier series of periodic function ?(?) = { −?, −1 ≤ ? ≤ 0 with...
find Fourier series of periodic function ?(?) = { −?, −1 ≤ ? ≤ 0 with the period 2 { ?, 0 ≤ ? ≤ 1
Q.  Find the an in the Fourier series expansion of the function                     ?(?) = Mx2 +...
Q.  Find the an in the Fourier series expansion of the function                     ?(?) = Mx2 + 7 sin(M?) defined over the interval (−?, ?). Where M =9
Find the Fourier series of the following functions f(x) = sinx+x^2+x, −2 < x < 2
Find the Fourier series of the following functions f(x) = sinx+x^2+x, −2 < x < 2
Find the Fourier cosine and sine series of f(t) = t^2 ,0 < t < π
Find the Fourier cosine and sine series of f(t) = t^2 ,0 < t < π
Identify the Fourier series for the half-wave rectified sine function with period 2π. This is the...
Identify the Fourier series for the half-wave rectified sine function with period 2π. This is the function that is sin(x) when sin(x) is positive, and zero when sin(x) is negative
Given the following functions, can you have the corresponding a) Fourier series, b) Fourier transform and...
Given the following functions, can you have the corresponding a) Fourier series, b) Fourier transform and c) Laplace transform? If yes, find them, if not, explain why you can not. A, x(t) = -1+cos(2t) + sin(pai*t+1)                                               (4-1) B, x(t) = 2d(t) cos(2t) +d(t-1.5p) sin(2t)                                          (4-2) C, x(t) = 1+cos(1.5t) + cos(4t)                                           (4-3)
Given the following functions, can you have the corresponding a) Fourier series, b) Fourier transform and...
Given the following functions, can you have the corresponding a) Fourier series, b) Fourier transform and c) Laplace transform? If yes, find them, if not, explain why you can not. A, x(t) = -1+cos(2t) + sin(pt+1)                                                                                 (4-1) B, x(t) =2d(t) cos(2t) +d(t-1.5p) sin(2t)                                                                    (4-2) C, x(t) = 1+cos(1.5t) + cos(4t)                                                                                    (4-3)
Find the coefficients for expanding y=1 in a Fourier series over the interval [-1,1]. Find the...
Find the coefficients for expanding y=1 in a Fourier series over the interval [-1,1]. Find the coefficients for expanding y=x in a Fourier series over the interval [-1,1].
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT