Home

Write math on your site with Mathjax

What is this?

Notations

Type in your LaTex Syntax like this $LaTex Syntax$ (inline) or $x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$

$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$

<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script>
window.MathJax = {
  tex: {
    inlineMath: [ ['$','$'], ['\\(','\\)'] ],
    displayMath: [ ['$$','$$'], ['\[','\]'] ],
    processEscapes: true,
    processEnvironments: true
  },
  options: {
    renderActions: {
      findscriptmathtex: [11, function (doc) {
        for (const node of document.querySelectorAll('script[type^="math/tex"]')) {
          const display = !!node.type.match(/; *mode=display/);
          const math = new doc.options.MathItem(node.textContent, doc.inputJax[0], display);
          const text = document.createTextNode('');
          node.parentNode.replaceChild(text, node);
          math.start = {node: text, delim: '', n: 0};
          math.end = {node: text, delim: '', n: 0};
          doc.math.push(math);
        }
      }, '']
    }
  }
};
</script>
<script async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js" id="MathJax-script"></script>

Read more

Steinitz exchange lemma

Steinitz exchange lemma If \( \{v_1,\ldots,v_m\} \) is a set of linearly independent vectors in vector space V, and \( \{w_1,\ldots,w_n\} \) spans V, then:

  1. Possibly after reordering the \( w_i \), \( \{v_1,\ldots,v_m,w_{m+1},\ldots,w_n\} \) spans V.
  2. \( m\,\leq\,n \)
  1. \( H_m \): Steinitz exchange lemma holds for all non-negative integers m.
  2. \( H_0 \): Steinitz exchange lemma holds when \( m=0 \) \( \emptyset \) is a set of linearly independent vectors in vector space V. Based on the conditions given \( \{w_1,\ldots,w_n\} \) spans V. And clearly, \( m=0\leq n \)
  3. \( H_k \): Steinitz exchange lemma holds for some non-negative integers \( k \)
  4. \( H_{k+1} \): Steinitz exchange lemma holds for \( (k+1) \). Based on \( H_k \), \( \{v_1,\ldots,v_k,w_{k+1},\ldots,w_n\} \) spans V.
    \[ v_{k+1}\in \textbf{V}\Leftrightarrow v_{k+1}=\sum_{i=1}^k{\lambda_i v_i}+\sum_{i=k+1}^n{\lambda_i w_i} \]

    Since \( v_1,\ldots,v_{k+1} \) are linearly independent,

    \begin{align*} \Rightarrow &v_{k+1}-\sum_{i=1}^k{\lambda_i v_i}\neq0\\ \Rightarrow &v_{k+1}\neq\sum_{i=1}^k{\lambda_i v_i}\\ \Rightarrow &\text{At least one of }\lambda_{k+1},\ldots\lambda_n~\text{is non-zero} \end{align*}

    Rearrange \( w_i \) so that \( \lambda_{k+1}\neq0 \)

    \begin{align*} \Rightarrow &v_{k+1}=\sum_{i=1}^k{\lambda_i v_i}+\lambda_{k+1}w_{k+1}+\sum_{i=k+2}^n{\lambda_i w_i}\\ \Leftrightarrow &w_{k+1}=\frac{1}{-\lambda_{k+1}}(\sum_{i=1}^k{\lambda_i v_i}-v_{k+1}+\sum_{i=k+2}^n{\lambda_i w_i}) \end{align*}

    \( \forall v\in \)V, \( \exists \) a linear combination of\( ~\{v_1,\ldots,v_k,w_{k+1},\ldots,w_n\}=v \) Now we substitute \( w_{k+1}=\frac{1}{-\lambda_{k+1}}(\sum_{i=1}^k{\lambda_i v_i}-v_{k+1}+\sum_{i=k+2}^n{\lambda_i w_i}) \) into the linear combination. \( \Rightarrow\forall v\in \)V, \( \exists \) a linear combination of\( ~\{v_1,\ldots,v_k,v_{k+1},w_{k+2},\ldots,w_n\}=v \) Therefore \( H_{k+1} \) holds, if \( H_k \) is true.

  5. Based on M.I., \( H_m \) is true.

Read more