曲曲的秘密学术基地

纯化欲望、坚持严肃性

欢迎!我是曲泽慧(@zququ),目前在深圳(ICBI,BCBDI,SIAT)任职助理研究员。


病毒学、免疫学及结构生物学背景,可以在 RG 上找到我已发表的论文

本站自2019年7月已访问web counter

Inverse Matrices

Something to note

The matrix A is invertible if there exists a matrix $A^{-1}$

Two-sided inverse: $$ A^{-1}\cdot A = I $$ Not all matrices have inverses. There are six note:

  1. The inverse exists if and only if elimination produces n pivots (row exchanges are allowed).
  2. The matxi A cannot have two different inverses.
  3. If A is invertible, the one and only solution to Ax = b is $x = A^{-1}b$.
  4. (important) Suppose tehre is a nonzero vector x such that Ax = 0. Then A cannot have an inverse. No matrix can bring o back to x.

    If A is invertible, then Ax = 0 can only have the zero solution when $x = A^{-1}\cdot 0 = 0$.

  5. A 2 by 2 matrix is invertible if an only if ad-bc is not zero:

    2 by 2 Inverse: $$ \begin{bmatrix} a & b
    c & d
    \end{bmatrix} ^{-1}=\frac{1}{ad-bc} \begin{bmatrix} d & -b
    -c & a
    \end{bmatrix} $$
    ad-bc is the determinant of A

  6. A diagonal matrix has an inverse provided no diagonal entries are zero:
    if $$ A = \begin{bmatrix} d_1 & &
    &\ddots&
    & &d_n
    \end{bmatrix} $$ then $$ A^{-1} = \begin{bmatrix} \frac{1}{d_1} & &
    &\ddots&
    & &\frac{1}{d_n}
    \end{bmatrix} $$
Last One

Vector Spaces and Subspaces

Summarized from ‘Introduction to Linear algebra’ from Gilbert Strang.Definition of The Vector SpacesVector space is a very important concept, which is denoted by $R^1, R^2, R^3 … R^n$, which consists of a a whole collection of vectors. For example...…

数学More
Next One

The Adjacency Matrix

Define an Adjacency MatrixHere, I want to define a matrix to show the graph or a network which has four nodes. As you can see in the Figure.This is a 0-1 matrix with sij = 1 when nodes i and j are connectd by an edge.$$S_{ij} = \begin{bmatrix} 0...…

数学More