Find adjoint of the matrix [[1,2],[3,4]].
Hint. For a 2x2 matrix, swap the main diagonal entries and negate the off-diagonal entries.
For A=[[a,b],[c,d]], adj(A)=[[d,-b],[-c,a]]. Here a=1,b=2,c=3,d=4, so adj(A)=[[4,-2],[-3,1]].
✦ adj(A) = [[4,-2],[-3,1]]
