show det(A) = det(A') ?

1 Ansicht (letzte 30 Tage)
Majid Alomari
Majid Alomari am 18 Nov. 2020
Kommentiert: Matt J am 18 Nov. 2020
A=[3 4;2 1]
det(A)=det(A')

Antworten (1)

Matt J
Matt J am 18 Nov. 2020
But it's not true!
A=rand(200);
isequal(det(A),det(A.'))
ans = logical
0
  1 Kommentar
Matt J
Matt J am 18 Nov. 2020
Fine, it's true within floating point precision:
A=rand(200);
percent_difference=(det(A)-det(A.'))/det(A)*100
percent_difference = 4.1836e-11

Melden Sie sich an, um zu kommentieren.

Tags

Produkte


Version

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by