Guest User

Untitled

a guest
Nov 24th, 2017
354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.79 KB | None | 0 0
  1. documentclass[hyperref={pdfencoding=auto}]{beamer} % "Beamer" is a word used in Germany to mean video projector.
  2.  
  3. usetheme{Berkeley} % Search online for beamer themes to find your favorite or use the Berkeley theme as in this file.
  4.  
  5. usepackage{color} % It may be necessary to set PCTeX or whatever program you are using to output a .pdf instead of a .dvi file in order to see color on your screen.
  6. usepackage{amsfonts,amssymb,amsmath}
  7. usepackage{graphicx} % This package is needed if you wish to include external image files.
  8.  
  9. theoremstyle{definition} % See Lesson Three of the LaTeX Manual for more on this kind of "proclamation."
  10. newtheorem*{dfn}{A Reasonable Definition}
  11. definecolor{kugreen}{RGB}{0,153,76}
  12. definecolor{kugreenlys}{RGB}{132,158,139}
  13. definecolor{kugreenlyslys}{RGB}{173,190,177}
  14. definecolor{kugreenlyslyslys}{RGB}{214,223,216}
  15.  
  16. %beamertemplate
  17. setbeamertemplate{theorems}[numbered]
  18. usecolortheme[named=kugreen]{structure}
  19. %useinnertheme{circles}
  20. usefonttheme[onlymath]{serif}
  21. %setbeamercovered{transparent}
  22. setbeamertemplate{blocks}[rounded][shadow=true]
  23. setbeamercovered{invisible}
  24. useinnertheme{rectangles}
  25.  
  26. title{Authentication Codes}
  27. author{Abigail A. Villa\ Skezeer John B. Paz}
  28. institute{Ph.D. Mathematics \ De La Salle University\ texttt{abigail_villa@dlsu.edu.ph // skezeer_john_paz@dlsu.edu.ph}}
  29. date{November 27, 2017}
  30. % Remove the % from the previous line and change the date if you want a particular date to be displayed; otherwise, today's date is displayed by default.
  31.  
  32. AtBeginSection[] % The commands within the following {} will be executed at the start of each section.
  33. {
  34. begin{frame} % Within each "frame" there will be one or more "slides."
  35. frametitle{Outline} % This is the title of the outline.
  36. tableofcontents[pausesections] % This will display the table of contents and highlight the current section.
  37. end{frame}
  38. } % Do not include the preceding set of commands if you prefer not to have a recurring outline displayed during your presentation.
  39.  
  40. begin{document}
  41.  
  42. begin{frame}
  43. titlepage
  44. end{frame}
  45.  
  46. section{Orthogonal Array} % Since this is the start of a new section, our recurring outline will appear here.
  47. subsection[PRELIMS]{Preliminaries}
  48.  
  49. begin{frame}
  50. frametitle{PRELIMINARIES}
  51. textbf{Latin Square}\ pause
  52. A Latin square of order $n$ with entries from an $n-set~X$ is an $n times n$ array $L$ in which every cell contains an element of $X$ such that every row of $L$ is a permutation of $X$ and every column of $L$ is a permutation of $X$.
  53. begin{block}{Example}
  54. A Latin square of order 4.\
  55. [
  56. begin{array}{|cccc|}
  57. hline
  58. 1&2&3&4\
  59. 4&1&2&3\
  60. 3&4&1&2\
  61. 2&3&4&1\
  62. hline
  63. end{array}
  64. ]
  65. end{block}
  66. end{frame}
  67.  
  68. begin{frame}
  69. textbf{Quasigroup}\
  70. textbf{Definition:} Let $X$ be a finite set of cardinality $n$, and let $circ$ be a binary operation defined on $X~(i.e., circ: Xtimes Xlongrightarrow X)$. We say that the pair $(X, circ)$ is a quasigroup of order $n$ provided that the following two properties are satisfied:\
  71. begin{enumerate}
  72. item For every $x,yin X$, the equation $xcirc z=y$ has a unique solution for $zin X$.\
  73. item For every $x,yin X$, the equation $zcirc x=y$ has a unique solution for $zin X$.
  74. end{enumerate}
  75. The textit{operation table} of a binary operation $circ$ defined on $X$ is the $|X| times |X|$ array $A=(a_{x,y})$, where $a_{x,y}=xcirc y$
  76.  
  77. end{frame}
  78.  
  79. begin{frame}
  80. textbf{Idempotent/Symmetric quasigroup}\
  81. textbf{Definition:} Suppose $(X,circ)$ is a quasigroup. We say that $(X,circ)$ is an textit{idempotent quasigroup} if $xcirc x =x$ for all $xin X$, and we say that $(X,circ)$ is a textit{symmetric quasigroup} if $xcirc y= y circ x$ for al $x,y in X$.
  82. end{frame}
  83.  
  84. begin{frame}
  85. These concepts can also be defined for Latin squares in the obvious way: A textit{symmetric Latin square} $L=(mathscr{l}_{x,y})$ .
  86. end{frame}
  87.  
  88. end{document}
Add Comment
Please, Sign In to add comment