Added notes PAR

This commit is contained in:
Nicolás A. Ortega Froysa 2021-09-17 18:14:00 +02:00
parent a2f4207463
commit a3da2dc174
4 changed files with 30 additions and 0 deletions

2
.gitignore vendored
View File

@ -1 +1,3 @@
credentials.txt
*.aux
*.log

View File

@ -1,2 +1,8 @@
Professor: Pedro Miguel Santos Luna
E-Mail: pmsantos@ceuandalucia.es
## Numbering Systems
- Decimal (10)
- Binary (2)
- Octal (8)
- Hexadecimal (16)

BIN
1/PAR/unit0.pdf Normal file

Binary file not shown.

22
1/PAR/unit0.tex Normal file
View 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}