Concept:Matrix multiplication and inverse of a 2×2 matrix.Explanation:First, compute A2=[x110][x110]=[x2+1xx1].Now, A4=A2A2=[(x2+1)2+x2x(x2+2)x(x2+2)x2+1].Given a11=109, so (x2+1)2+x2=109.Let x2=y. Then y2+3y+1=109, giving y2+3y−108=0.Thus y=9 or y=−12. Since x∈R+, x2=9, so x=3.Therefore, A4=[109333310].Its determinant is 109×10−33×33=1090−1089=1.For a 2×2 matrix, A−1=det(A)1[d−c−ba].Hence, (A4)−1=[10−33−33109].Answer:[10−33−33109]Option D.