Perform the matrix operation.

Given A = [-1 2] and B = [1 0] , find 2A + 3B.

2A = [-2,4] and 3B = [3,0]

for 2A+3B just add the corresponding elements.