%% Problem 1
% Plotting $\sin(2 \pi x)$ on $[0, 1]$.

x = linspace(0, 1, 11);
y = sin(2*pi*x)

plot(x, y)

%% Problem 2
% Plotting $\cos(2 \pi x)$ on $[0, 1]$.

y = cos(2*pi*x)

plot(x, y)