You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -116,6 +116,8 @@ Please contact [FanWangEcon](https://fanwangecon.github.io/) for issues or probl
116
116
3.[System of Linear Equations Row Echelon Form](https://fanwangecon.github.io/Math4Econ/matrix_system_of_equations/htmlpdfm/matrix_row_echelon_form.html): [**mlx**](https://github.com/FanWangEcon/Math4Econ/blob/master/matrix_system_of_equations/matrix_row_echelon_form.mlx)\|[**m**](https://github.com/FanWangEcon/Math4Econ/blob/master/matrix_system_of_equations/htmlpdfm/matrix_row_echelon_form.m)\|[**pdf**](https://github.com/FanWangEcon/Math4Econ/blob/master/matrix_system_of_equations/htmlpdfm/matrix_row_echelon_form.pdf)\|[**html**](https://fanwangecon.github.io/Math4Econ/matrix_system_of_equations/htmlpdfm/matrix_row_echelon_form.html)
Copy file name to clipboardExpand all lines: README_appendix.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,8 @@
104
104
3.[System of Linear Equations Row Echelon Form](https://fanwangecon.github.io/Math4Econ/matrix_system_of_equations/htmlpdfm/matrix_row_echelon_form.html): [**mlx**](https://github.com/FanWangEcon/Math4Econ/blob/master/matrix_system_of_equations/matrix_row_echelon_form.mlx)\|[**m**](https://github.com/FanWangEcon/Math4Econ/blob/master/matrix_system_of_equations/htmlpdfm/matrix_row_echelon_form.m)\|[**pdf**](https://github.com/FanWangEcon/Math4Econ/blob/master/matrix_system_of_equations/htmlpdfm/matrix_row_echelon_form.pdf)\|[**html**](https://fanwangecon.github.io/Math4Econ/matrix_system_of_equations/htmlpdfm/matrix_row_echelon_form.html)
Copy file name to clipboardExpand all lines: README_toc.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,8 @@
100
100
3.[System of Linear Equations Row Echelon Form](https://fanwangecon.github.io/Math4Econ/matrix_system_of_equations/htmlpdfm/matrix_row_echelon_form.html): [**mlx**](https://github.com/FanWangEcon/Math4Econ/blob/master/matrix_system_of_equations/matrix_row_echelon_form.mlx)\|[**m**](https://github.com/FanWangEcon/Math4Econ/blob/master/matrix_system_of_equations/htmlpdfm/matrix_row_echelon_form.m)\|[**pdf**](https://github.com/FanWangEcon/Math4Econ/blob/master/matrix_system_of_equations/htmlpdfm/matrix_row_echelon_form.pdf)\|[**html**](https://fanwangecon.github.io/Math4Econ/matrix_system_of_equations/htmlpdfm/matrix_row_echelon_form.html)
Again, make sure you are clear about what your notations mean. Math
399
-
should help make our econ ideas more clear to ourselves and others, and
400
-
that starts with clear functional notations.
394
+
Or perhaps different single letters than the output:
395
+
396
+
\[y=f(h),l=g(h),u=v(h)\]
397
+
398
+
Each notation structure could be confusing, make sure you are clear
399
+
about what your notations mean. Math should help make our ideas more
400
+
clear to ourselves and others, and that starts with clear functional
401
+
notations.
401
402
402
403
\hypertarget{monomial-and-polynomial}{%
403
404
\section{Monomial and Polynomial}\label{monomial-and-polynomial}}
@@ -3839,6 +3840,108 @@ \subsection{Reduced Row Echelon Form with 2 Equations and 2 Unknowns}\label{redu
3839
3840
\(\displaystyle x_2 =\frac{pa-od}{ea-db}\)
3840
3841
\end{itemize}
3841
3842
3843
+
\hypertarget{matrix-inverse}{%
3844
+
\section{Matrix Inverse}\label{matrix-inverse}}
3845
+
3846
+
\begin{quote}
3847
+
Go back to \href{http://fanwangecon.github.io/}{fan}'s \href{https://fanwangecon.github.io/CodeDynaAsset/}{CodeDynaAsset} Package, \href{https://fanwangecon.github.io/M4Econ/}{Matlab Code Examples} Repository (\href{https://fanwangecon.github.io/M4Econ/bookdown}{bookdown site}), or \href{https://fanwangecon.github.io/Math4Econ/}{Math for Econ with Matlab} Repository (\href{https://fanwangecon.github.io/Math4Econ/bookdown}{bookdown site}).
3848
+
\end{quote}
3849
+
3850
+
\hypertarget{inverse-of-a-matrix}{%
3851
+
\subsection{Inverse of a Matrix}\label{inverse-of-a-matrix}}
3852
+
3853
+
The inverse of \(5\) is \(\frac{1}{5}\), multiplying the two numbers
3854
+
together gives us 1. What is the inverse of a matrix?
3855
+
3856
+
The product of the inverse of a matrix and the matrix itself is the
3857
+
identity matrix.
3858
+
3859
+
\begin{itemize}
3860
+
\item
3861
+
\(\displaystyle X^{-1} X=I\)
3862
+
\item
3863
+
\(\displaystyle XX^{-1} =I\)
3864
+
\end{itemize}
3865
+
3866
+
If we generate any random square matrix in matlab, there is always an
3867
+
inverse:
3868
+
3869
+
\begin{verbatim}
3870
+
X = rand(3,3)
3871
+
3872
+
X = 3x3
3873
+
0.5824 0.8004 0.9848
3874
+
0.0707 0.2859 0.7157
3875
+
0.9227 0.5437 0.8390
3876
+
3877
+
Xinverse = X^(-1)
3878
+
3879
+
Xinverse = 3x3
3880
+
-0.8663 -0.7903 1.6911
3881
+
3.4905 -2.4393 -2.0163
3882
+
-1.3091 2.4499 0.6386
3883
+
3884
+
Identity = X*Xinverse
3885
+
3886
+
Identity = 3x3
3887
+
1.0000 0.0000 0.0000
3888
+
-0.0000 1.0000 0
3889
+
0 -0.0000 1.0000
3890
+
\end{verbatim}
3891
+
3892
+
\hypertarget{rank-of-a-matrix}{%
3893
+
\subsection{Rank of a Matrix}\label{rank-of-a-matrix}}
3894
+
3895
+
\begin{itemize}
3896
+
\tightlist
3897
+
\item
3898
+
(SB P142) \textbf{Rank:} The rank of a matrix is the number of non-zero
3899
+
rows in its row echelon form
3900
+
\end{itemize}
3901
+
3902
+
The Rank of a matrix is the number of non-zero rows in the row-echelon
3903
+
form of the matrix. With 2 equations and 2 unknowns, it just means the
3904
+
two lines are not parallel to each other. If two lines are parallel,
3905
+
then through elementary row operations, one will become all zero, and
0 commit comments