SUNY Geneseo Department of Mathematics
Friday, February 12
Math 239 03
Spring 2021
Prof. Doug Baldwin
(No.)
Based on “Writing Guidelines for Mathematics Proofs” in section 1.2 of the textbook, and the “Minimalist Introduction to LaTeX.”
There are some generally well-written, up to occasional and inevitable typo-level errors, examples in the discussion. (Even though I know that typo-level errors are “inevitable,” a well-written proof should be proofread, follow conventions of grammar and spelling, etc.)
Let’s try an example that’s not in the discussion, namely proving that the sum of a rational number and an integer is another rational.
We wrote the proof in LaTeX, developing proof ideas alongside talking about the proof-writing rules and LaTeX features we used.
The main idea of the proof is to use the definition of “rational number,” namely a number that can be written as a fraction a/b where a and b are integers and b ≠ 0, to expand out what a rational plus an integer would look like, and then, by putting that sum over a common denominator, show that it is also a ratio of 2 integers with a non-zero denominator.
Both the LaTeX source file that we wrote, and the resulting PDF output file, are available from Canvas.
Some guidelines for writing proofs that this one uses include
Some new (i.e., not in the “Minimalist Introduction to LaTex”) LaTeX features that we used to write the proof include
newtheorem
command, which creates environments for stating theorem-like things (e.g., theorems, lemmas, postulates, axioms, conjectures, definitions, …). There are so many such things that rather than LaTeX trying to foresee all of them, it gives authors a way to quickly define the ones they need, via newtheorem
, which has as its arguments the name of the environment to create and a word or phrase to label uses with. In our case, we used it to create an environment thm
that represents theorem statements; every theorem statement defined in this environment will be labeled with the word “Theorem.”proof
environment, which identifies a block of text as being a proof.\ne
command, which produces a “not equal” sign\frac
command, which produces a fraction written as a numerator over a denominator.There’s a new problem set available, about proofs and writing them.
See the handout for details.
“Compound” statements, i.e., statements made by joining simpler ones with “and,” “or,” etc.
Please read section 2.1 in the textbook.
Please also contribute to this discussion of compound statements.