Q & A’s

Please place your answers in the R Markdown code blocks or write the answers next to the A:

5.3278 * 8.3
## [1] 44.22074
sqrt(64)
## [1] 8
2^16
## [1] 65536
44100 / 1000
## [1] 44.1
pi * 10^2
## [1] 314.1593
vals = seq(0, 2*pi, length.out = 16000)
# a.)
vals_sin = sin(vals)
# b.)
plot(vals_sin)

Task(s)