5.1 The Properties of Determinants

  1. The determinant of the n by n identity matrix is 1 : \(det I = 1\).

  2. The determinant changes sign when two rows are exchanged(sign reversal) : \(det P = \pm 1\) (det P = +1 for an even number of row exchange and det P = -1 for an odd number.)

  3. The determinant is linear function of each row separately :

    • 3a : multiply row i for any number t det is multiplied by t : \(\left[ \begin{matrix} ta&tb \\ c&d \end{matrix} \right] = t\left| \begin{matrix} a&b \\ c&d \end{matrix} \right|\)
    • 3b: add row i of A to row i of A' then determinants add : \(\left[ \begin{matrix} a+a'&b+b' \\ c&d \end{matrix} \right] = \left| \begin{matrix} a&b \\ c&d \end{matrix} \right| + \left| \begin{matrix} a'&b' \\ c&d \end{matrix} \right|\)

    From rules 1-3 we will reach rules 4-10.

  4. If two rows of A are equal, the det A = 0.

  5. Subtracting a multiple of one row from another row leaves det A unchanged. ( eliminaton steps doesn't change determinant : det A = det D, without row exchanges.)

  6. A matrix with a row of zeros has det A = 0.

  7. If A is triangular then \(det A = a_{11}a_{22}...a_{nn}\)=product of diagnonal entries.

  8. If A is singular then det A = 0. If A is invertible then \(det A \neq 0\).

  9. The determinant of AB is det A times det B : \(|AB| = |A||B|\) .

  10. The transpose \(A^T\) has the same determinant as A: \(det A^T = det A\).

    • A zero column will make the det A = 0.
    • Two equal columns will make the det A = 0.
    • If a column is multiplied by t, so is the determinant.

5.2 Three Formula for Determinant

The Pivot Formula

When elimination leads to \(A=LU\), the pivots \(d_1,d_2,...,d_n\) are on the diagonal of the upper triangular U.

No row exchanges: \(det A = (det L)(det U)=(1)(d_1d_2...d_n)\)

Row exchanges: \((detP)(detA)= (detL)(detU)\) gives \(detA = \pm(d_1d_2...d_n)\) , odd leads to minus(-), even leads to plus(+)

The Big Formula

The big formula has n! terms.

\[det A = \sum(detP)a_{1\alpha}a_{1\beta}...a_{n\omega}
\]

example:

\[\left| \begin{matrix} a_{11}&a_{12}&a_{13}\\ a_{21}&a_{22}&a_{23} \\ a_{31}&a_{32}&a_{33} \\\end{matrix} \right| =
\left| \begin{matrix} a_{11}&&\\ &a_{22}& \\ &&a_{33} \\\end{matrix} \right| +
\left| \begin{matrix} &a_{12}&\\ &&a_{23} \\ a_{31}&& \\\end{matrix} \right| +
\left| \begin{matrix} &&a_{13}\\ a_{21}&& \\ &a_{32}& \\\end{matrix} \right| +\\
\quad \quad \quad \quad \quad \quad \quad \quad
\left| \begin{matrix} a_{11}&&\\ &&a_{23} \\ &a_{32}& \\\end{matrix} \right| +
\left| \begin{matrix} &a_{12}&\\ a_{21}&& \\ &&a_{33} \\\end{matrix} \right| +
\left| \begin{matrix} &&a_{13}\\ &a_{22}& \\ a_{31}&& \\\end{matrix} \right| + \\
\Downarrow \\
det A = a_{11}a_{22}a_{33}\left| \begin{matrix} 1&&\\ &1& \\ &&1\\\end{matrix} \right| + a_{12}a_{23}a_{31}\left| \begin{matrix} &1&\\ &&1 \\ 1&&\\\end{matrix} \right| +
a_{13}a_{21}a_{32}\left| \begin{matrix} &&1\\ 1&& \\ &1&\\\end{matrix} \right| + \\
\quad \quad \quad
a_{11}a_{23}a_{32}\left| \begin{matrix} 1&&\\ &&1 \\ &1&\\\end{matrix} \right| +
a_{12}a_{21}a_{33}\left| \begin{matrix} &1&\\ 1&& \\ &&1\\\end{matrix} \right| +
a_{13}a_{22}a_{31}\left| \begin{matrix} &&1\\ &1& \\ 1&&\\\end{matrix} \right| \\
\quad \quad \quad
=a_{11}a_{22}a_{33} + a_{12}a_{23}a_{31} +
a_{13}a_{21}a_{32}-a_{11}a_{23}a_{32} -
a_{12}a_{21}a_{33} -
a_{13}a_{22}a_{31}
\]

The Cofactors Formula

The determinant is the dot product of any row i of A with its cofactors using other rows:

\[det A = a_{i1}C_{i1} + a_{i2}C_{i2} + ... + a_{in}C_{in}
\]

Each cofactor \(C_{ij}\) (order n-1, without row i and column j) includes its correct sign:

\[C_{ij} = (-1)^{i + j} det M_{i+j}
\]

example:

\[\left| \begin{matrix} a_{11}&a_{12}&a_{13}\\ a_{21}&a_{22}&a_{23} \\ a_{31}&a_{32}&a_{33} \\\end{matrix} \right| =
\left| \begin{matrix} a_{11}&&\\ &a_{22}&a_{23} \\ &a_{32}&a_{33} \\\end{matrix} \right| +
\left| \begin{matrix} &a_{12}&\\ a_{21}&&a_{23} \\ a_{31}&&a_{33} \\\end{matrix} \right| +
\left| \begin{matrix} &&a_{13}\\ a_{21}&a_{22}& \\ a_{31}&a_{32}& \\\end{matrix} \right|
\]
\[C_{11} = a_{22}a_{33}-a_{23}a_{32} \\
C_{12} = -(a_{21}a_{33}-a_{23}a_{31}) \\
C_{13} = a_{21}a_{32}-a_{22}a_{31}
\]

5.3 Inverse\ Cramer's Rule\ Volumn of box

Formula for \(A^{-1}\)

The i, j entry of \(A^{-1}\) is the cofactor \(C_{ji}\) divided by det A:

\[(A_{ij}^{-1}) = \frac{C_{ji}}{det A} \\
A^{-1} = \frac {C^T}{detA}
\]

proof :

\[A^{-1} = \frac {C^T}{detA} \\
\Uparrow \\
AC^T = (detA)I \\
\Uparrow \\

\left[ \begin{matrix} a_{11}&a_{12}&a_{13}\\ a_{21}&a_{22}&a_{23} \\ a_{31}&a_{32}&a_{33} \\\end{matrix} \right]
\left[ \begin{matrix} C_{11}&C_{21}&C_{31}\\ C_{12}&C_{22}&C_{32} \\ C_{13}&C_{23}&C_{33} \\\end{matrix} \right] =
\left[ \begin{matrix} detA&0&0\\ 0&detA&0 \\ 0&0&detA \\\end{matrix} \right]
\]

Cramer's Rule

If det A is not zero, Ax=b is solved by determinants:

\[x_1 = \frac{det B_1}{detA} , x_2 = \frac{det B_2}{detA}, \cdots, x_n = \frac{det B_n}{detA}
\]

The matrix \(B_j\) has the jth column of A replaced by the vector b.

example:

\[Solve \quad Ax = (1,0,0) \\
det B_1 = \left| \begin{matrix} 1&a_{12}&a_{13}\\ 0&a_{22}&a_{23} \\ 0&a_{32}&a_{33} \\\end{matrix} \right| \\
det B_2 =\left| \begin{matrix} a_{11}&1&a_{13}\\ a_{21}&0&a_{23} \\ a_{31}&0&a_{33} \\\end{matrix} \right| \\
det B_3 =\left| \begin{matrix} a_{11}&a_{12}&1\\ a_{21}&a_{22}&0\\ a_{31}&a_{32}&0 \\\end{matrix} \right|
\]

Volumn of box

The volume equals the absolute value of det A.

Area of Parallelogram and Triangle

Determinants are the best way to find area.

Area of Parallelogram : \(Area = Determinant\)

Area of Triangle: \(Area = Determinant / 2\)

When an edge is stretched by a factor t, the volume is multiplied by t. (Rule 3a)

When edge 1 is added to edge 1', the volume is the sum of the two original volumes.(Rule 3b)

5.4 Cross Product

The cross product of \(u=(u_1,u_2,u_3)\) and \(v=(v_1,v_2,v_3)\) is a vector.

\[u \times v = \left[ \begin{matrix} i&j&k \\ u_1&u_2&u_3 \\ v_1&v_2&v_3 \end{matrix} \right] = (u_2v_3-u_3v_2)i + (u_3v_1-u_1v_3)j +(u_1v_2-u_2v_1)k
\]

The cross product is a vector with length \(||u|| \ \ ||v|| \ \ |sin\theta|\). Its direction is perpendicular to u and v.It points "up" or "down" by the right hand rule.

\[||u \times v|| =||u|| \ \ ||v||\ \ |sin\theta| \\ ( ||u \cdot v|| =||u|| \ \ ||v||\ \ |cos\theta| )
\]

5. Determinant的更多相关文章

  1. bzoj 2107: Spoj2832 Find The Determinant III 辗转相除法

    2107: Spoj2832 Find The Determinant III Time Limit: 1 Sec  Memory Limit: 259 MBSubmit: 154  Solved: ...

  2. SPOJ - DETER3:Find The Determinant III (求解行列式)

    Find The Determinant III 题目链接:https://vjudge.net/problem/SPOJ-DETER3 Description: Given a NxN matrix ...

  3. SPOJ - Find The Determinant III 计算矩阵的行列式答案 + 辗转相除法思想

    SPOJ -Find The Determinant III 参考:https://blog.csdn.net/zhoufenqin/article/details/7779707 参考中还有几个关于 ...

  4. XTU 1260 - Determinant - [2017湘潭邀请赛A题(江苏省赛)][高斯消元法][快速幂和逆元]

    是2017江苏省赛的第一题,当时在场上没做出来(废话,那个时候又不懂高斯消元怎么写……而且数论也学得一塌糊涂,现在回来补了) 省赛结束之后,题解pdf就出来了,一看题解,嗯……加一行再求逆矩阵从而得到 ...

  5. 2017湘潭赛 A题 Determinant (高斯消元取模)

    链接 http://202.197.224.59/OnlineJudge2/index.php/Problem/read/id/1260 今年湘潭的A题 题意不难 大意是把n*(n+1)矩阵去掉某一列 ...

  6. Linear Algebra - Determinant(几何意义)

    二阶行列式的几何意义 二阶行列式 \(D = \begin{vmatrix}a_1&a_2\\b_1&b_2\end{vmatrix} = a_1b_2 - a_2b_1\) 的几何意 ...

  7. Linear Algebra - Determinant(基础)

    1. 行列式的定义 一阶行列式: \[ \begin{vmatrix} a_1 \end{vmatrix} = a_1 \] 二阶行列式: \[ \begin{vmatrix} a_{11} & ...

  8. The Evaluation of Determinant(求行列式mod一个数的值)

    #include<cstdio> #include<iostream> #include<algorithm> #include<cstring> #i ...

  9. 行列式(determinant)的物理意义及性质

    1. 物理(几何)意义 detA=output areainput area 首选,矩阵代表的是线性变换(linear transformation).上式说明一个矩阵的行列式(detA)几何意义上, ...

  10. SP1772 Find The Determinant II

    题意 \(T\) 组数据,每组给定两个整数 \(n,k\),求 \(\det A\),其中 \(A\) 为一个 \(n\times n\) 的矩阵且 \(A_{i,j}=\gcd(i,j)^k\),对 ...

随机推荐

  1. core-js/modules/es7.arrat......................报错

    拉入代码之后出现如图提示,导致原因是因为core-js版本太高,可以用cnpm install core-js@2成功解决,安装一个项目前最后将node-moudel删除,重新安装

  2. 第129篇:JS模块化开发

    好家伙,本篇为<JS高级程序设计>第二十六章"模块"学习笔记 JS开发会遇到代码量大和广泛使用第三方库的问题. 解决这个问题的方案通 常需要把代码拆分成很多部分,然后再 ...

  3. 【Azure Entra ID】如何在中国区获取用户 StrongAuthenticationUserDetails 和 StrongAuthenticationMethods 信息

    问题描述 如何在中国区获取用户 StrongAuthenticationUserDetails 和 StrongAuthenticationMethods 信息 ? StrongAuthenticat ...

  4. 【Azure 应用服务】如何关掉App Service/Function App的FTP部署, 使之变成FTPS

    问题描述 如何关掉App Service/Function App的FTP部署, 使之变成FTPS方式呢? 问题解答 在应用服务/函数应用的配置下选择右边的常规设置,然后修改FTP状态为"仅 ...

  5. Git 如何删除本地分支和远程分支

    查看已有的本地及远程分支:git branch -a   删除远程分支(当前删除的是origin/dev分支):git push origin --delete dev   删除后,再次查看分支情况: ...

  6. iview table 左侧固定列 右侧固定列 滚动的时候 表格错位 解决方案

    iview table 左侧固定列 右侧固定列 滚动的时候 表格错位 解决方案 iview table 滚动条位置重置 https://www.jianshu.com/p/32fcd50489ff

  7. Neural Dynamics on Complex Networks-KDD20

    一.摘要 学习复杂网络上的连续时间动态对于理解.预测和控制科学和工程中的复杂系统至关重要.然而,由于高维系统结构中的组合复杂性.它们难以捉摸的连续时间非线性动力学以及它们的结构-动力学依赖性,使得这项 ...

  8. 基于python的定时PC定时录音机实现

    一 概念基础 这次用python实现一个定时录音机的功能,可以让你的i电脑秒变定时录音机. 这里用到了wave库,time库等.熟悉该源码,即可了解这些库的用法.   二 源码解析 1.录音函数,该函 ...

  9. Android Studio安装插件重启插件消失

    问题 安装插件后,已经提示让重启IDE,但是重启后发现插件是安装失败了 解决方法 原因是自己改了配置,如果下载的插件是jar包,则可以安装,如果是zip压缩文件的插件,则是要我们手动解压一下 我上面的 ...

  10. cpprest示例微服务链路嵌套调用层数1000以及跟踪

    本demo使用本人两个github项目cpprestsdk4mingw,zhepler-wxWdigets编写,一个简单的rest服务器cpprestbox,只提供GET方法方便测试,可以添加修改ap ...