<?xml version="1.0" encoding="UTF-8"?>

<record version="10" id="1033">
 <title>mathematical connective symbols</title>
 <name>MathematicalConnectiveSymbols</name>
 <created>2026-02-21 17:30:44</created>
 <modified>2026-02-21 19:15:35</modified>
 <type>Definition</type>
 <creator id="1" name="bloftin"/>
 <modifier id="1" name="bloftin"/>
 <author id="1" name="bloftin"/>
 <classification>
	<category scheme="msc" code="02.10.Ab"/>
 </classification>
 <defines>
	<concept>negation</concept>
	<concept>conjunction</concept>
	<concept>disjunction</concept>
	<concept>implication</concept>
	<concept>antecedent</concept>
	<concept>consequent</concept>
	<concept>biconditional</concept>
	<concept>truth tables</concept>
	<concept>double negation</concept>
 </defines>
 <preamble>% this is the default PhysicsLibrary preamble.  as your knowledge
% of TeX increases, you will probably want to edit this, but
% it should be fine as is for beginners.

% almost certainly you want these
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsfonts}

% used for TeXing text within eps files
%\usepackage{psfrag}
% need this for including graphics (\includegraphics)
%\usepackage{graphicx}
% for neatly defining theorems and propositions
%\usepackage{amsthm}
% making logically defined graphics
%\usepackage{xypic}

% there are many more packages, add them here as you need them
\usepackage{geometry}
\usepackage{hyperref}
% define commands here</preamble>
 <content>\subsection{Introduction}

Mathematics relies on precise symbolic language to express relationships between statements. Central to this language are \textbf{connective symbols}, also called \textbf{logical connectives}. These symbols combine simpler statements into more complex ones whose truth values depend in a well-defined way on their components.

Logical connectives form the foundation of mathematical reasoning, formal proof, set theory, computer science, and many areas of physics and engineering. Every theorem, definition, and proof ultimately rests on combinations of these connectives.

A statement that is either true or false is called a \textbf{proposition}. We typically denote propositions by lowercase letters such as $p$, $q$, and $r$.

\subsection{Basic Logical Connectives}

There are five primary logical connectives used throughout mathematics.

\subsubsection{Negation}

The \textbf{negation} of a proposition reverses its truth value.

\[
\neg p
\]

This is read as

\begin{quote}
``not $p$''
\end{quote}

\textbf{Example:}

If

\[
p: \text{``The number is positive''}
\]

then

\[
\neg p: \text{``The number is not positive''}
\]

\subsubsection{Conjunction}

The \textbf{conjunction} of two propositions is true only if both are true.

\[
p \land q
\]

This is read as

\begin{quote}
``$p$ and $q$''
\end{quote}

\textbf{Example:}

\[
\text{``The number is positive and even''}
\]

\subsubsection{Disjunction}

The \textbf{disjunction} represents logical ``or.''

\[
p \lor q
\]

This is the \textbf{inclusive or}, meaning one or both may be true.

\textbf{Example:}

\[
\text{``The number is negative or zero''}
\]

\subsubsection{Implication}

The \textbf{implication} represents logical consequence.

\[
p \rightarrow q
\]

This is read as

\begin{quote}
``if $p$, then $q$''
\end{quote}

Here:

\begin{itemize}
\item $p$ is called the \textbf{antecedent}
\item $q$ is called the \textbf{consequent}
\end{itemize}

\textbf{Example:}

\[
\text{If a number is divisible by 4, then it is even}
\]

\subsubsection{Biconditional}

The \textbf{biconditional} expresses logical equivalence.

\[
p \leftrightarrow q
\]

This is read as

\begin{quote}
``$p$ if and only if $q$''
\end{quote}

This means both statements have the same truth value.

\textbf{Example:}

\[
\text{A number is even if and only if it is divisible by 2}
\]

\subsection{Truth Tables}

The meaning of connectives is formally defined using \textbf{truth tables}.

\subsubsection{Negation}

\[
\begin{array}{c|c}
p &amp; \neg p \\
\hline
T &amp; F \\
F &amp; T
\end{array}
\]

\subsubsection{Conjunction}

\[
\begin{array}{c|c|c}
p &amp; q &amp; p \land q \\
\hline
T &amp; T &amp; T \\
T &amp; F &amp; F \\
F &amp; T &amp; F \\
F &amp; F &amp; F
\end{array}
\]

\subsubsection{Disjunction}

\[
\begin{array}{c|c|c}
p &amp; q &amp; p \lor q \\
\hline
T &amp; T &amp; T \\
T &amp; F &amp; T \\
F &amp; T &amp; T \\
F &amp; F &amp; F
\end{array}
\]

\subsubsection{Implication}

\[
\begin{array}{c|c|c}
p &amp; q &amp; p \rightarrow q \\
\hline
T &amp; T &amp; T \\
T &amp; F &amp; F \\
F &amp; T &amp; T \\
F &amp; F &amp; T
\end{array}
\]

Note the important fact:

\begin{quote}
An implication is false only when the antecedent is true and the consequent is false.
\end{quote}

\subsubsection{Biconditional}

\[
\begin{array}{c|c|c}
p &amp; q &amp; p \leftrightarrow q \\
\hline
T &amp; T &amp; T \\
T &amp; F &amp; F \\
F &amp; T &amp; F \\
F &amp; F &amp; T
\end{array}
\]

\subsection{Compound Statements}

Logical connectives allow the construction of complex propositions.

\textbf{Example:}

\[
(p \lor q) \land \neg r
\]

This represents

\begin{quote}
``($p$ or $q$) and not $r$''
\end{quote}

\subsection{Operator Precedence}

Logical connectives follow a precedence order similar to arithmetic operations.

\[
\begin{array}{c|l}
\text{Highest} &amp; \neg \\
&amp; \land \\
&amp; \lor \\
&amp; \rightarrow \\
\text{Lowest} &amp; \leftrightarrow
\end{array}
\]

Parentheses should always be used when ambiguity is possible.

\subsection{Logical Equivalence}

Two propositions are logically equivalent if they always have the same truth value.

We write:

\[
p \equiv q
\]

\textbf{Example: Double Negation}

\[
\neg (\neg p) \equiv p
\]

\subsection{Important Logical Laws}

These laws are fundamental to mathematical reasoning.

\subsubsection{Commutative Laws}

\[
p \land q \equiv q \land p
\]

\[
p \lor q \equiv q \lor p
\]

\subsubsection{Associative Laws}

\[
(p \land q) \land r \equiv p \land (q \land r)
\]

\[
(p \lor q) \lor r \equiv p \lor (q \lor r)
\]

\subsubsection{Distributive Laws}

\[
p \land (q \lor r) \equiv (p \land q) \lor (p \land r)
\]

\[
p \lor (q \land r) \equiv (p \lor q) \land (p \lor r)
\]

\subsubsection{De Morgan's Laws}

\[
\neg (p \land q) \equiv \neg p \lor \neg q
\]

\[
\neg (p \lor q) \equiv \neg p \land \neg q
\]

These laws are essential for simplifying logical expressions.

\subsection{Logical Connectives in Mathematics}

Logical connectives appear in nearly every mathematical definition.

\textbf{Example: Definition of Continuity}

A function $f$ is continuous at $x_0$ if

\[
\forall \epsilon &gt; 0, \exists \delta &gt; 0
\]

such that

\[
|x - x_0| &lt; \delta \rightarrow |f(x) - f(x_0)| &lt; \epsilon
\]

This definition uses implication as its central logical structure.

\subsection{Applications}

Logical connectives are fundamental in:

\begin{itemize}

\item Mathematical proof

\item Computer programming

\item Digital circuit design

\item Set theory

\item Artificial intelligence

\end{itemize}

Every computer processor physically implements logical connectives using electronic logic gates.

\subsection{Summary}

Logical connectives provide the symbolic framework for mathematical reasoning.

The primary connectives are:

\[
\neg, \quad \land, \quad \lor, \quad \rightarrow, \quad \leftrightarrow
\]

They allow simple statements to be combined into complex logical structures and form the foundation of formal mathematics.

In more advanced mathematics these connectives will be extended through quantifiers, predicate logic, and formal proof systems.</content>
</record>
