Linear Algebra
2.108 min read

Logic and Proof Techniques

Linear algebra proofs use precise logical reasoning. A statement is a claim that is either true or false. The converse of "If P then Q" is "If Q then P" — which may or may not be true.

The contrapositive of "If P then Q" is "If not Q then not P" — always logically equivalent to the original. Proving the contrapositive is a common technique when direct proof is hard.

Many key results in linear algebra are if and only if (iff) statements: both the statement and its converse are true. For example, "vectors are linearly dependent if and only if one is a linear combination of the others."

Formal View

Definition 2.10 — Logical Equivalences
For a statement "If PP then QQ" (written PQP \Rightarrow Q): \begin{itemize} \item Converse: QPQ \Rightarrow P (not necessarily true) \item Contrapositive: ¬Q¬P\neg Q \Rightarrow \neg P (always equivalent to PQP \Rightarrow Q) \item Biconditional: PQP \Leftrightarrow Q means PQP \Rightarrow Q and QPQ \Rightarrow P \end{itemize}

Why This Matters

Logical precision prevents errors when reasoning about abstract mathematical structures.

  • Algorithm correctness proofs use if-and-only-if characterizations
  • Invertible matrix theorem: 10 properties are mutually equivalent — each is iff the others
  • Solvability of Ax = b: solvable iff b is in the column span of A

Quiz

Question 1

What is the contrapositive of "If AA is invertible, then det(A)0\det(A) \neq 0"?

Common Mistakes

  • Confusing the converse with the contrapositive — the converse is NOT guaranteed true, the contrapositive is.
  • Thinking "iff" can be proved by proving only one direction — you must prove both P→Q and Q→P.