Advertisement
Guest User

Untitled

a guest
Jan 17th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. # G51 MCS
  2.  
  3. ## Binary expression
  4.  
  5. | Name | Formula | |
  6. | :--- | :--: | :--: |
  7. | Tautology | $a \lor \lnot a \Leftrightarrow \top$ |
  8. | Contradiction | $a \land \lnot a \Leftrightarrow \bot$ |
  9. | Absorption | $\top \lor a \Leftrightarrow \top$ | $\bot \land a \Leftrightarrow \bot$ |
  10. | Identity | $\bot \lor a \Leftrightarrow a$ | $\top \land a \Leftrightarrow a$ |
  11. | Associativity | $(a \land b) \land c \Leftrightarrow a \land ( b \land c)$ | $(a \lor b) \lor c \Leftrightarrow a \lor ( b \lor c)$ |
  12. | Distributivity | $(a \lor b) \land c \Leftrightarrow (a \land c) \lor (b \land c)$ | $(a \lor b) \land c \Leftrightarrow (a \land c) \lor (b \land c)$
  13.  
  14. ## Glossary
  15.  
  16. | Word | Definition |
  17. | :--- | :--- |
  18. | Axiom | A proposition that is either proven to be, or is accepted as true. It can be used to build on proofs |
  19. | Claim | A proposition that is said to be true - e.g. $4 \in \mathbb{N}$ |
  20. | Indirect proof | Proving a claim through proving all of its contradictions (other possibilities) are false |
  21. | Direct proof | Proving a claim through proving that it is true |
  22. | Predicate | a proposition whose value depends one one or more variables |
  23. | Proof | A sequence of logical deductions from axioms and other statements which concludes that a proposition is true |
  24. | Proposition | A statement that is either true or false |
  25. | Set | An unordered collection of numbers |
  26. | Tuple | An ordered collection of values |
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement