Problem 546. Is A the inverse of B?

Created by Bruce Raine

Given a matrix A and a matrix B, is A the inverse of B?

>>A=[2,4;3,5];
>>B=[-2.5,2;1.5,-1];
>>isInverse(A,B)
ans = 1

Problem Group

63 solvers submitted 166 solutions (2.63 solutions/solver).

Problem Comments

Solution Comments