Example 1: Find the determinant of the matrix A = [[2, 3], [4, 5]]. Solution: |A| = 25 - 34 = -2 Example 2: Find the inverse of the matrix B = [[2, 1], [3, 4]]. Solution: Step 1: |B| = 24 - 13 = 5 Step 2: adj(B) = [[4, -1], [-3, 2]] Step 3: B^(-1) = adj(B) / |B| = [[4/5, -1/5], [-3/5, 2/5]]