Vector subtraction is performed by adding the scalar multiple of -1 with the second vector operand to the first vector operand.
To subtract, first reverse the vector you want to subtract, then add.
For example,Vector A = [-3, 2], Vector B = [2, 3] Subtraction C = A + (-B) = [(-3) - 2, 2 - 3)] = [-5, -1]