-
Notifications
You must be signed in to change notification settings - Fork 5
/
03-00-Biconditional.tex
67 lines (53 loc) · 2.12 KB
/
03-00-Biconditional.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
\documentclass[12pt]{article}
\usepackage{pmmeta}
\pmcanonicalname{Biconditional}
\pmcreated{2013-03-22 11:53:06}
\pmmodified{2013-03-22 11:53:06}
\pmowner{Mathprof}{13753}
\pmmodifier{Mathprof}{13753}
\pmtitle{biconditional}
\pmrecord{17}{30484}
\pmprivacy{1}
\pmauthor{Mathprof}{13753}
\pmtype{Definition}
\pmcomment{trigger rebuild}
\pmclassification{msc}{03-00}
\pmsynonym{iff}{Biconditional}
\pmrelated{PropositionalLogic}
\pmrelated{Equivalent3}
\endmetadata
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{graphicx}
%%%%\usepackage{xypic}
\begin{document}
\section{Biconditional}
A \emph{biconditional} is a truth function that is true only in the case that both parameters are true or both are false.
Symbolically, the biconditional is written as
$$ a \Leftrightarrow b$$
or
$$ a \leftrightarrow b$$
with the latter being rare outside of formal logic. The truth table for the biconditional is
\begin{center}
\begin{tabular}{ccc}
a & b & $a \Leftrightarrow b$ \\
\hline
F & F & T \\
F & T & F \\
T & F & F \\
T & T & T
\end{tabular}
\end{center}
The biconditional function is often written as ``iff,'' meaning ``if and only if.''
It gets its name from the fact that it is really two conditionals in conjunction,
$$ (a \rightarrow b) \land (b \rightarrow a) $$
This fact is important to recognize when writing a mathematical proof, as both conditionals must be proven independently.
\section{Colloquial Usage}
The only unambiguous way of stating a biconditional in plain English is of the form ``$b$ if $a$ and $a$ if $b$.'' Slightly more formal, one would say ``$b$ implies $a$ and $a$ implies $b$.'' The plain English ``if'' may sometimes be used as a biconditional. One must weigh context heavily.
For example, ``I'll buy you an ice cream if you pass the exam'' is meant as a biconditional, since the speaker doesn't intend a valid outcome to be buying the ice cream whether or not you pass the exam (as in a conditional). However, ``it is cloudy if it is raining'' is \emph{not} meant as a biconditional, since it can obviously be cloudy while not raining.
%%%%%
%%%%%
%%%%%
%%%%%
\end{document}