Advertisement
UF6

Project I

UF6
Sep 19th, 2016
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.93 KB | None | 0 0
  1. % COMMENT: THIS TELLS US THE DOCUMENT TYPE - NAMELY, AN ARTICLE %
  2.  
  3. \documentclass{article}
  4.  
  5. % COMMENT: THESE ARE PACKAGES THAT WE WANT SHARELATEX TO INCLUDE, THAT WE WILL - OR MAY - USE %
  6.  
  7. \usepackage[utf8]{inputenc}
  8. \usepackage{amsmath}
  9. \usepackage{amssymb}
  10. \usepackage{makeidx}
  11. \usepackage{graphicx}
  12. \usepackage{wrapfig}
  13. \usepackage{color}
  14. \usepackage{xcolor,colortbl}
  15. \usepackage{framed}
  16. \usepackage{mdframed}
  17. \usepackage{hyperref}
  18. \documentclass{article}
  19. \usepackage[utf8]{inputenc}
  20. \usepackage[english]{babel}
  21.  
  22. \setlength{\parindent}{4em}
  23. \setlength{\parskip}{1em}
  24. \renewcommand{\baselinestretch}{1}
  25. % COMMENT: THIS AUTOMATICALLY MAKES HYPERLINKS BLUE %
  26.  
  27. \hypersetup{colorlinks=true,linkcolor=blue}
  28.  
  29. % COMMENT: WE FILL IN THE TITLE, AUTHOR & DATE %
  30.  
  31. \title{Structured Proof }
  32. \author{Richard Charette}
  33. \date{September 16, 2016}
  34.  
  35. % COMMENT: ANYTHING UP TO NOW IS PREAMBLE. WE NOW BEGIN THE DOCUMENT %
  36.  
  37. \begin{document}
  38. % COMMENT: WE MAKE THE TITLE (INCLUDES AUTHOR & DATE) %
  39.  
  40. \maketitle
  41.  
  42. % COMMENT: WE BEGAN A NEW PAGE, AFTER THE TABLE OF CONTENTS %
  43.  
  44. \newpage
  45. % COMMENT: WE BEGAN A NEW NUMBERED SECTION. FOR AN UNNUMBERED SECTION USE "section*{}"* %
  46.  
  47. \section*{The Proof}
  48.  
  49. % COMMENT: WE BEGAN THE TEXT. NOTE THE FORMAT FOR HYPERLINKS %
  50. The first thing is to assume that $\sqrt{7}=\frac{a}{b}$
  51. where both a,b ${\in}$ ${Z^+}$, both ${a}$ and ${b}$ ${\ne}$ 0. Next, assume that ${a}$ and ${b}$ do not have any common divisors that are ${>}$ ${1}$. What this means is the fraction $\frac{a}{b}$ gets reduced to its lowest possible terms, this can be done to any fraction. Neither ${a}$ and ${b}$ are even, this has to do with the common divisor of ${7}$, which is based upon the fraction $\frac{a}{b}$ that cannot be in its lowest terms.
  52.  
  53. The equation $\sqrt{7}=\frac{a}{b}$ is rearranged into ${a^2} ={7b^2}$, this means that ${a^2}$ is ${Z^+}$ because any ${Z^+}$ is written as ${7k}$, where ${k}$ is any ${Z}$. For ${a^2}$ is a ${Z^+}$, what this means is  ${a}$ is also ${Z^+}$, this is due to the square of any even number is also an even number. The square of an odd number is also an odd number.
  54.  
  55. Since ${a}$ is even, it is written as ${a}$=${7k}$.
  56. The next step is to substitute ${a}$=${2k}$ into the original equation ${a^2}$=${7b^2}$ and get ${49k^2}$ = ${7b^2}$. Next comes the simplification to obtain ${7k^2}$ =${b^2}$. Following the same logic for ${a}$ one can see that ${b^2}$ is an even number, from this ${b}$ is also an even number.
  57.  
  58. For both ${a,b}$ ${\in}$ ${Z^+}$, but there is a contradiction from this. At the very start of the proof there was an assumption that $\frac{a}{b}$ was simplified in the lowest terms. This means that both a and b have no common divisors. In this case they are both even, this would mean that ${7}$ would be a common divisor between a and b.
  59.  
  60. This is a contradiction of the original assumption that $\sqrt{7}$ is incorrect, thus $\sqrt{7}$ is not a rational number.
  61.  
  62.  
  63. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement