Physics-101 said:
Oh, that's nice. Yeah, I thin that I need to check that out. It's strange that it gives me the wrong answer. But about the Maple. I tried this with Matlab by inserting:
A=sym([0.9473 0.5742 0.3007;0.0155 0.5747 0.7399; ;0.3201 0.5830 0.6018])
inv(A), AND got the same answer as I did with my calculator. What did you write on Maple, because I'm clearly thinking wrong here.
If I take C = your calculated Inverse(L), and test it, it fails: neither C.A or A.C is near equal to the unit matrix I.
In fact, C.A = [[1.0001, -0.00019, 1.3589],[-0.00956,0.99436,-3.7859],[-0.00006,-0.0005, 3.9415]] = [row1,row2,row3]. The final column is [1.3589,-3.7859, 3.9415], which is nowhere near [0,0,1]. I doubt that Matlab could have given you such an incorrect inverse matrix like C, so I can only conclude that somehow your inputs must be incorrect.
The Maple commands I used were:
with(LinearAlgebra): <----- loads the linear algebra package
A:=
<---- entered as <column1|column2|column3>
(This prints out the correct matrix A exactly as you have presented it). To get the inverse is a snap:
B:=MatrixInverse(A);
Here are the results, printed out to 6-digit accuracy:
[[28.8646, 57.4696, -85.0803],[ -76.8017, -159.951, 235.031], [59.0493, 124.386, -180.773]] = [row1,row2,row3].