Moved documents to subdirectories.

This commit is contained in:
2021-09-24 16:42:15 +02:00
parent 0b503451d0
commit a9e3376b54
4 changed files with 0 additions and 0 deletions

BIN
1/PAR/notes/unit0.pdf Normal file

Binary file not shown.

22
1/PAR/notes/unit0.tex Normal file

@ -0,0 +1,22 @@
\documentclass[12pt]{article}
\title{Unit 0: Introduction}
\author{Nicolás A. Ortega Froysa}
\begin{document}
\maketitle
\section{Numbering Systems}
Generally we will work in 4 numbering systems:
\begin{itemize}
\item Decimal (base 10): notation $x_{10}$
\item Binary (base 2): notation $x_{2}$
\item Octal (base 8): notation $x_{8}$
\item Hexadecimal (base 16): notation $x_{16}$
\end{itemize}
The \textbf{binary} system is used for computers since digital/electronic
signals can only be on (1) or off (0).
\end{document}