Gaussian Elimination

Let’s consider a problem where we have to buy oranges and apples but under the following conditions. The difference between 2X the number of oranges and the number of apples should be 3. The sum of 4X the number of oranges and the number of apples should be 9. The difference between 5X the number of oranges and 3X the number of apples should be 7. System of Linear Equations These conditions could be modeled using the following equations...

July 16, 2024 · 10 min · Avnish

Matrices

A matrix is a rank 2 tensor i.e. an array expanding in a maximum of two independent dimensions. Multiple vectors could be arranged in rows or columns to create a matrix. $$\vec{a} = \begin{bmatrix} 5 \\ 6 \\ 7 \end{bmatrix}\ \ \vec{b} = \begin{bmatrix} 7 \\ 9 \\ 10 \end{bmatrix}$$ $$\textbf{A} = \begin{bmatrix} \vec{a} & \vec{b} \end{bmatrix} = \begin{bmatrix} 5 & 7 \\ 6 & 9 \\ 7 & 10 \end{bmatrix}$$...

July 12, 2024 · 8 min · Avnish