Douglas Blumeyer's RTT How-To: Difference between revisions
Cmloegcmluin (talk | contribs) →vectors and covectors: warning about ephemerality |
Cmloegcmluin (talk | contribs) →multimaps: Cloud not Alpha |
||
Line 1,240: | Line 1,240: | ||
So just set these inside a number brackets equal to the rank, and we’ve got {{multicovector|1 4 4}}. | So just set these inside a number brackets equal to the rank, and we’ve got {{multicovector|1 4 4}}. | ||
Wolfram | Wolfram Language doesn't have a built in way to show the proper count of brackets, but its Minors function can at least calculate the list of minors for you. The only trick is that you have to tell it the rank of your matrix as the second argument: | ||
{| class="wikitable" | {| class="wikitable" | ||
!input | !input | ||
!output | !output | ||
|- | |- | ||
|<code>Minors[{{1,0,-4},{0,1,4}} | |<code>wedge[m_] := Minors[m, Length[m]]</code> | ||
|<nowiki> | |||
<code>wedge[{{1,0,-4},{0,1,4}}]</code> | |||
|<nowiki>{1, 4, 4}</nowiki> | |||
|} | |} | ||
Line 1,256: | Line 1,257: | ||
{| class="wikitable" | {| class="wikitable" | ||
!input | !input | ||
!output | !output | ||
|- | |- | ||
|<code> | |<code>wedge[<nowiki>{{12,19,28}}</nowiki>]</code> | ||
|<nowiki> | |<nowiki>{12, 19, 28}</nowiki> | ||
|} | |} | ||
Line 1,311: | Line 1,311: | ||
{| class="wikitable" | {| class="wikitable" | ||
!input | !input | ||
!output | !output | ||
|- | |- | ||
|<code> | |<code>wedge[{{1,0,1,4},{0,1,1,-1},{0,0,-2,3}}]</code> | ||
|<nowiki> | |<nowiki>{-2, 3, 1, -11}</nowiki> | ||
|} | |} | ||