1. The document outlines tasks to be performed in an R programming lab experiment including exploring assignment operators, creating vectors and matrices, performing operations on matrices, creating arrays, selecting and extracting elements, and exploring logical operators.
2. Matrices and vectors are created using functions like matrix(), c(), seq(), and rep(). Operations like addition, subtraction, multiplication and division are demonstrated on matrices and vectors.
3. Elements are selected and extracted from matrices and arrays using indexing and functions like ncol(), nrow(), length(), and dim(). Logical operators like &, |, ! are also explored.
4. The document shows how to remove elements from selected positions in a matrix.