Problem C26 Solving Using R

C26 Solving by hand

C26 Solving by hand

# Step 1: Let us create two matrix

A = matrix(data=c(2,0,3,2,5,1,2,4,3,0,1,2,5,3,2,1), nrow=4,ncol=4)

#Step 2: Det of A

det(A)
## [1] 29