Processing math: 88%
  • Problem 01
  • Problem 02
  • Problem 03
  • Problem 04
  • Problem 05

The solution can be found here.

Problem 01

In R, and using just one line of code, create the following matrices and assign them to the variables W, X, Y, and Z, respectively. W=(147258369), X=(123456789), Y=(100010001), and Z=(001010100). Also, compute WX and YZ, such that represents the element-wise multiplication and matrix multiplication.

Problem 02

Create a matrix [A]3×3, such that aij=i+j, i,j. Also, create [B]3×3, such that bij=TRUE, if i+j is even, and bij=FALSE, otherwise. Finally, create [C]3×3, such that cij=1, if i+j{1,2,3}, and cij=0, otherwise.

Problem 03

Write a function for computing n!, for any n non-negative integer. Print the 10 first numbers from the sequence (fn)n, such that fn=n!, for all nZ+. Also, for n=10, compare your result with the function from (recall that, for any positive integer n, Γ(n)=(n1)!).

Problem 04

Create 3 five-element (row) vectors p, q, and r, such that p contains the first 5 prime numbers, q the first 5 numbers from the Fibonacci sequence, and r the 5 first elements of the sequence (rn)n, such that rn=(nπ), n, and is the floor function. Do NOT compute the terms manually (write functions!), so that you can easily extend it to larger vectors. Also, create the matrices A=(pqr), and B=(pTqTrT).

Problem 05

Suppose that, for the population of male teenagers, we can model their height as heighti=β0+β1agei+ϵi, such that ϵiNormal(0,σ2ϵ). Now, for a random sample of size n=20, we want to estimate \boldsymbol{\beta} = (\beta_0, \beta_1)^{\text{T}} as \hat{\boldsymbol{\beta}} = (\text{X}^{\text{T}}\text{X})^{-1}\text{X}^{\text{T}}\boldsymbol{y}, such that \begin{align} \text{X} = \begin{pmatrix} 1 & \texttt{age}_1 \\ \vdots & \vdots \\ 1 & \texttt{age}_{20} \end{pmatrix}, \text{ and } \boldsymbol{y} = \begin{pmatrix} \texttt{height}_1 \\ \vdots \\ \texttt{height}_{20} \end{pmatrix}. \end{align} Compute \hat{\boldsymbol{\beta}} and plot \hat{\boldsymbol{y}} = \text{X}\hat{\boldsymbol{\beta}}. For this exercise, generate the data set using the following code

set.seed(999)
beta_0 <- 140
beta_1 <- 2
ages <- sample(x = 12:18, size = 20, replace = TRUE)
heights <- round(x = beta_0 + beta_1 * ages + rnorm(n = 10, mean = 0, sd = 2), 
                 digits = 2)
data <- data.frame(heights = heights, ages = ages)