Advertisement
JoelSjogren

Untitled

Mar 23rd, 2020
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. octave:1> A = [1 2 3; 1 4 7; 3 -1 1]; B = [1 1 0; -1 1 1; 1 2 3]; C = [5 7 2; 3 3 0; 0 1 2];
  2. octave:2> I = eye(3); M = [A I I; I B I; I I C];
  3. octave:3> det(M)
  4. ans = -1692.0
  5. octave:4> det(A-I)*det(B-I)*det(C-I)*det(I+I/(A-I)+I/(B-I)+I/(C-I))
  6. ans = -1692.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement