Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.55 KB | None | 0 0
  1. \documentclass{article}
  2. \usepackage[utf8]{inputenc}
  3. \usepackage[english,russian]{babel}
  4. \usepackage{indentfirst}
  5. \usepackage{misccorr}
  6. \usepackage{graphicx}
  7. \usepackage{amsmath}
  8. \usepackage{amsfonts}
  9. \renewcommand{\baselinestretch}{1.5}
  10.  
  11. \begin{document}
  12.    \textbf{Question 1}\\\\
  13.    - Point(x) for 'x is a point'\\
  14.    - Line(x) for 'x is a straight line'\\
  15.    - LiesOn(x, y) for 'x lies on y'\\
  16.    - x=y for 'x coincides with y'\\
  17.  
  18.    1) For any two distinct points, there is a unique line containing both of them.\\
  19.    Solution:
  20.    $$\forall x \forall y: Point(x)\wedge Point(y)\wedge\overline{x=y}\Longrightarrow$$
  21.    $$\Longrightarrow\exists!L: Line(L)\wedge LiesOn(x, L)\wedge LiesOn(y, L)$$
  22.    2) The definition of parallel lines.\\
  23.    Solution:
  24.    $$Parallel(L_1, L_2) - \forall L_1 \forall L_2: Line(L_1)\wedge Line(L_2)\Longrightarrow$$
  25.    $$\Longrightarrow\overline{\exists x}: Point(x)\wedge LiesOn(x, L_1)\wedge LiesOn(x, L_2)$$
  26.    3) For any line x and any point y that is not lying on x, there exists a unique line z, that contains y and is parallel to x.\\
  27.    Solution:
  28.    $$\forall x: Line(x)$$
  29.    $$\forall y: Point(y)\wedge\overline{LiesOn(y, x)}\Longrightarrow$$
  30.    $$\Longrightarrow !\exists z: Line(z)\wedge LiesOn(y, z)\wedge Parallel(x, z)$$
  31.    \textbf{Question 2}\\\\
  32.    Use the technique explained in the lecture to show that the following formula is valid:
  33.    $$\forall x(\overline{P(x)}\Rightarrow Q(x))\Rightarrow\forall y(\overline{Q(y)}\Rightarrow P(y))$$
  34.    Solution:
  35.    $$$$
  36. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement