Frontmatter

If you are publishing this notebook on the web, you can set the parameters below to provide HTML metadata. This is useful for search engines and social media.

using Plots, Waveforms
2.6 s

Exercise

Calculate the first four Fourier coefficients (magnitude and phase) for this wave. Then construct a frequency plot of the magnitude components.

md"""
## Exercise

Calculate the first four Fourier coefficients (magnitude and phase) for this wave. Then construct a frequency plot of the magnitude components.

"""
149 μs
begin
t = 0:0.001:2
plot(t, wave.(t), label=false)
end
698 ms

The wave in the first period is defined as follows:

$$ x(t) = \begin{cases} -t, \quad t<0.5 \textrm{sec} \\ 0, \quad 0.5 \leq t \leq 1 \textrm{sec} \end{cases}$$

md"""
The wave in the first period is defined as follows:

```math
x(t) = \begin{cases} -t, \quad t<0.5 \textrm{sec} \\ 0, \quad 0.5 \leq t \leq 1 \textrm{sec} \end{cases}
```
"""
152 μs

Side note

md"""### Side note"""
109 μs

The function to generate the wave is given below:

md"""
The function to generate the wave is given below:
"""
116 μs
wave (generic function with 1 method)
wave(t) = mod(t, 1) < 0.5 ? -mod(t, 1) : 0
286 μs

And you can plot it by calling

 plot(t,wave.(t))
md"""
And you can plot it by calling

```julia
plot(t,wave.(t))

```
"""
114 μs
Click to see the Matlab version

t = linspace(0, 2, 100);
y = arrayfun(@wave, t);
plot(t, y)

function [y] = wave(t)
	c = mod(t, 1);
	if c < 1/2
    	y = -c;
	else
    	y = 0;
	end
end

Foldable("<b>Click to see the Matlab version</b>", md"""
```octave
t = linspace(0, 2, 100);
y = arrayfun(@wave, t);
plot(t, y)

function [y] = wave(t)
c = mod(t, 1);
if c < 1/2
y = -c;
else
y = 0;
end
end
```
""")
1.7 ms

Solution

Sine coefficient
md"""
### Solution


##### Sine coefficient
"""
139 μs

Find $a$'s and $b$'s and $a_0$. Then calculate the magnitude and phase.

$$b_k = \dfrac{2}{T} \int_0^T x(t) \sin(k \omega_0 t)dt = \dfrac{2}{1} \int_0^{0.5} -t \sin(2 \pi kt) dt $$

where we used $\omega_0 = 2\pi f$

md"""
Find $a$'s and $b$'s and $a_0$. Then calculate the magnitude and phase.
```math
b_k = \dfrac{2}{T} \int_0^T x(t) \sin(k \omega_0 t)dt = \dfrac{2}{1} \int_0^{0.5} -t \sin(2 \pi kt) dt
```
where we used $\omega_0 = 2\pi f$
"""
156 μs

Use integration by parts: $\int u \cdot dv = uv - \int v \cdot du$. Here $u = -t$ and $dv = \sin(2 \pi kt)$. We have

$$\begin{align*} v &= \dfrac{-\cos(2\pi kt)}{2\pi k} \\ \int_0^{0.5} u \cdot dv &= uv - \int_0^{0.5} v \cdot du \end{align*}$$

md"""
Use integration by parts: $\int u \cdot dv = uv - \int v \cdot du$.
Here $u = -t$ and $dv = \sin(2 \pi kt)$. We have
```math
\begin{align*}
v &= \dfrac{-\cos(2\pi kt)}{2\pi k} \\
\int_0^{0.5} u \cdot dv &= uv - \int_0^{0.5} v \cdot du
\end{align*}
```
"""
126 μs
Show answer

$$b_k = 2 \left[ \left. -t \dfrac{-\cos(2\pi kt)}{2\pi k} \right| _{0} ^{0.5} - \int_0^{0.5} \dfrac{\cos(2\pi kt)}{2\pi k} \right]$$

which simplifies to

$$b_k = \dfrac{1}{2\pi k}\cos(\pi k)$$

Foldable("Show answer", md"""
```math
b_k = 2 \left[ \left. -t \dfrac{-\cos(2\pi kt)}{2\pi k} \right| _{0} ^{0.5} - \int_0^{0.5} \dfrac{\cos(2\pi kt)}{2\pi k} \right]
```

which simplifies to
```math
b_k = \dfrac{1}{2\pi k}\cos(\pi k)
```
""")
804 μs
b (generic function with 1 method)
b(k) = cos(π*k)/(2*π*k)
249 μs
Click to show MATLAB

% This is part of the activity to turn in!

Foldable("Click to show MATLAB", md"""
```octave
% This is part of the activity to turn in!
```
""")
99.0 μs
Cosine coefficient

Similarly for $a$,

$$ a_k = \dfrac{2}{T} \int_0^T x(t) \cos(k\omega_0 t)dt = \dfrac{2}{1} \int_0^{0.5} -t \cos(2\pi kt) dt$$

md""" ##### Cosine coefficient

Similarly for $a$,

```math
a_k = \dfrac{2}{T} \int_0^T x(t) \cos(k\omega_0 t)dt = \dfrac{2}{1} \int_0^{0.5} -t \cos(2\pi kt) dt
```
"""
137 μs

Use integration by parts $\int u \cdot dv = uv - \int v \cdot du$. Here $u = -t$ and $dv = \cos(2 \pi kt)$. We have

$$\begin{align*} v &= \dfrac{\sin(2\pi kt)}{2\pi k} \\ \int_0^{0.5} u \cdot dv &= uv - \int_0^{0.5} v \cdot du \end{align*}$$

md"""
Use integration by parts $\int u \cdot dv = uv - \int v \cdot du$.
Here $u = -t$ and $dv = \cos(2 \pi kt)$. We have
```math
\begin{align*}
v &= \dfrac{\sin(2\pi kt)}{2\pi k} \\
\int_0^{0.5} u \cdot dv &= uv - \int_0^{0.5} v \cdot du
\end{align*}
```

"""
122 μs
Show answer

$$a_k = 2 \left[ \left. -t \dfrac{\sin(2\pi kt)}{2\pi k} \right| _{0} ^{0.5} - \int_0^{0.5} \dfrac{-\sin(2\pi kt)}{2\pi k} \right]$$

which simplifies to

$$a_k = \dfrac{-1}{2\pi^2 k^2}\left[\cos(\pi k)-1 \right]$$

Foldable("Show answer", md"""
```math
a_k = 2 \left[ \left. -t \dfrac{\sin(2\pi kt)}{2\pi k} \right| _{0} ^{0.5} - \int_0^{0.5} \dfrac{-\sin(2\pi kt)}{2\pi k} \right]
```

which simplifies to
```math
a_k = \dfrac{-1}{2\pi^2 k^2}\left[\cos(\pi k)-1 \right]
```
""")
131 μs
a (generic function with 1 method)
a(k) = -1/(2*(k*π)^2)*(cos(π*k)-1)
321 μs
Click to show MATLAB

% This is part of the activity to turn in!

Foldable("Click to show MATLAB", md"""
```octave
% This is part of the activity to turn in!
```
""")
88.5 μs
Constant coefficient

Now, find $a_0$

$$ C_0 = a_0 = \dfrac{2}{T} \int_0^T x(t) dt$$

md""" ##### Constant coefficient

Now, find $a_0$
```math

C_0 = a_0 = \dfrac{2}{T} \int_0^T x(t) dt
```
"""
129 μs
Show answer

$$C_0 = \dfrac{2}{1} \int_0^{0.5} -tdt = \left. \dfrac{-2t^2}{2} \right| _{0} ^{0.5} = -0.25$$

Foldable("Show answer", md"""
```math
C_0 = \dfrac{2}{1} \int_0^{0.5} -tdt = \left. \dfrac{-2t^2}{2} \right| _{0} ^{0.5} = -0.25
```
""")
92.4 μs
Phase/magnitude form
md"""##### Phase/magnitude form"""
102 μs
Show conversion

Finally,

$$|C_k| = \sqrt{a_k^2 + b_k^2}$$

And

$$\theta_k = \tan^{-1} \left( \dfrac{-b_k}{a_k} \right)$$

Foldable("Show conversion", md"""
Finally,
```math
|C_k| = \sqrt{a_k^2 + b_k^2}
```

And
```math
\theta_k = \tan^{-1} \left( \dfrac{-b_k}{a_k} \right)
```
""")
143 μs
c (generic function with 1 method)
c(k) = sqrt(a(k)^2 + b(k)^2)
304 μs

The final results should look like:

c1 = 0.18866975954102655

c2 = 0.07957747154594767

c3 = 0.05423299590711398

c4 = 0.039788735772973836

md"""
The final results should look like:

`c1` = $(c(1))

`c2` = $(c(2))

`c3` = $(c(3))

`c4` = $(c(4))


"""
44.6 ms

$$C_1 = 0.1887 \quad C_2 = 0.0796,\quad C_3 = 0.0542,\quad C_4 = 0.0398$$

md"""
$C_1 = 0.1887 \quad C_2 = 0.0796,\quad C_3 = 0.0542,\quad C_4 = 0.0398$
"""
76.2 μs

Folding code

begin
struct Foldable{C}
title::String
content::C
end
function Base.show(io, mime::MIME"text/html", fld::Foldable)
write(io,"<details><summary>$(fld.title)</summary><p>")
show(io, mime, fld.content)
write(io,"</p></details>")
end
md"""`Folding code`"""
end
2.9 ms