<- makeFun(ifelse(abs(t) <= 0.5, 1, 0) ~ t)
sq_wave slice_plot(sq_wave(t) ~ t, domain(t=-1:1))
Chap 36 Exercises
Activities
Exercise 1 Here is a square-wave function:
Find the projection of the square wave onto each of these functions. Use the domain
Hint: To find the scalar multiplier of projecting
<- Integrate(g(t)*f(t) ~ t, domain(t=-1:1)) /
A Integrate(f(t)*f(t) ~ t, domain(t=-1:1))
Then the projection of
Write down the scalar multiplier on each of the 8 functions above.
If you calculated things correctly, this is the linear combination of the 8 functions that best matches the square wave.
Loading required package: cubature
Exercise 2 Consider these functions/vectors on the domain
(that is, ) (that is, )
Plot out each of the functions on the domain. How many complete cycles does each function complete as
goes from 0 to 1?What is the length of each function?
All of the functions are mutually orthogonal except one. Which is the odd one out? (Hint: If the dot product is zero, the vectors are orthgonal.)
Exercise 3
Suppose we are interested in a domain
Each of these functions goes through an integer number of cycles over
<- makeFun(sin(2*pi*t/10) ~ t)
s1 <- makeFun(sin(4*pi*t/10) ~ t)
s2 # and so on
<- makeFun(cos(4*pi*t/10) ~ t)
c2 <- makeFun(cos(6*pi*t/10) ~ t)
c3 slice_plot(s1(t) ~ t, domain(t=0:10)) |>
slice_plot(c2(t) ~ t, color="blue")
Using the definition of the dot product between two functions as
- Calculate the “length” of each of the functions
. - Calculate the angle between each pair of functions.
To simplify your calculations, you might want to make use of these “helper” functions:
<- function(tilde1, tilde2, domain) {
fdot <- makeFun(tilde1)
f <- makeFun(tilde2)
g Integrate(f(t)*g(t) ~ t, domain)
}<- function(tilde1, tilde2, domain) {
fangle fdot(tilde1, tilde2, domain) /
sqrt(fdot(tilde1, tilde1, domain) *
fdot(tilde2, tilde2, domain))
}
- To judge from the set of angles you calculated, what about the functions
would make it easy to project a function onto the subspace spanned by the functions?
Exercise 4 (Still in draft. Figure out a nice activity based on this.)
id: anchorage-tides
Anchorage, AK
Components: - M2 12.42 hours - S2 12 hours - N2 12.658 hours - K1 23.935 hours
<- with(Anchorage_tide, hour)
hour <- with(Anchorage_tide, level)
b <- sin(2*pi*hour/12.42)
sin1 <- cos(2*pi*hour/12.42)
cos1 <- sin(2*pi*hour/23.935)
sin2 <- cos(2*pi*hour/23.935)
cos2 <- sin(2*pi*hour/12)
sin3 <- cos(2*pi*hour/12)
cos3 <- sin(2*pi*hour/12.658)
sin4 <- cos(2*pi*hour/12.658)
cos4 <- cbind(1, sin1, cos1, sin2, cos2, sin3, cos3, sin4, cos4)
A <- b %onto% cbind(1, sin1, cos1)
mod1 <- b %onto% cbind(1, sin1, cos1, sin2, cos2)
mod2 <- qr.solve(A, b)
x <- A %*% x
mod3 <- b - mod3
resid gf_line(level ~ hour, data = Anchorage_tide) %>%
gf_line(mod3 ~ hour, color="magenta") %>%
gf_lims(x = c(0,1000))
Warning: Removed 75114 rows containing missing values (`geom_line()`).
Removed 75114 rows containing missing values (`geom_line()`).
gf_line(resid ~ hour)
:::