Week 5: Matrix Operations and a bit of Data Manipulation Objective This week’s assignment focused on matrix operations, specifically finding the inverse and determinant of matrices. Additionally, I explored some data manipulation techniques, which I will summarize below. Part 1: Matrix Operations Matrix Creation I created two matrices: Matrix A : A 10x10 matrix containing values from 1 to 100. Matrix B : A 10x100 matrix containing values from 1 to 1000. Determinant and Inverse of Matrix A The determinant of Matrix A was found to be 0 , indicating that it is singular and does not have an inverse. Matrix B is non-square (10x100), so it cannot have a determinant or an inverse. Error Handling When attempting to compute the inverse of Matrix A using the solve() function, R returned an error indicating that the matrix is singular. This message means that the matrix does not have an inverse because...