Installation

  1. https://miktex.org/download

Boilerplate

\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{dsfont}
\begin{document}
 
\section{Q1}
 
 
\end{document}

Tags

begin{align}

\begin{align*}
	\text{}\\
	\text{}\\
	\text{}\\
\end{align*}

indent

\indent

Augmented Matrix

\left[\begin{array}{cc|c}
a & b  & 0\\ \\
\vdots\\
c & d & 0\\ \\
\end{array}\right]

Piecewise Functions/System Of Equations

```latex
\[ f(x) = \begin{cases} 
          0 & x\leq 0 \\
          \frac{100-x}{100} & 0\leq x\leq 100 \\
          0 & 100\leq x 
       \end{cases}
\]