29

In many proofs I see that some variable is "fixed" and/or "arbitrary". Sometimes I see only one of them and I miss a clear guideline for it. Could somebody point me to a reliable source (best a well-known standard book) which explains, when and how to use both in proofs?

EDIT: A little add-on to the question: Take a usual induction on natural numbers and assume that you are teaching it to students in their first semester. How do you explain "fixed" and "arbitrary" in this scenario?

ryang
  • 38,879
  • 14
  • 81
  • 179
grackkle
  • 463
  • 3
    As Quiaochu Yuan points out, one place you will see this is beginning (and sometimes not so beginning) analysis. It is an attempt partly to defang the logical complexity of $\forall\epsilon\exists \delta\forall x$. At the earliest level, the student may even be invited to think of the "fixed" $\epsilon$ as being, say, $1/1000$. – André Nicolas Jun 21 '11 at 16:14
  • 1
    bln-tom: To address your second question, I did that during the fall semester. The answer I can give you is simply "carefully.", it is also important to explain how these words are not magical. Writing them will not make a bad proof be correct (a common freshman mistake). – Asaf Karagila Jun 22 '11 at 06:36

4 Answers4

38

Both "arbitrary" and "fixed" are just shorthand for a universal quantifier. When I say something like "fix $\epsilon > 0$" it means I am about to prove a statement that is true for all $\epsilon > 0$ (and thereby prove that some function is continuous, for example) but I don't want to actually write out "for all $\epsilon > 0$" in front of every sentence I'm about to write. That's really all there is to it.

Qiaochu Yuan
  • 419,620
  • 16
    I agree that this is confusing though; at first glance "arbitrary" and "fixed" sound like they mean opposite things, and then some people say "fix an arbitrary..." – Qiaochu Yuan Jun 21 '11 at 16:00
18

When you encounter the term "arbitrary", it usually just means that a given statement is specified for any element from a given set of elments. For example, if I say, let $x$ be an arbitrary element of the interval $[0, 1]$ I just mean that $x$ can take on any value within that interval.

The term fixed connotes a similar but more specific meaning. If I say let $x$ be a fixed element of the interval $[0, 1]$ I mean that, firstly, $x$ is an arbitrary element of $[0,1]$ but it's value is unchanging througout its usage.

The difference in meaning is subtle but sometimes important. If you start out with a "fixed" element you can't, for example, choose its value at some later point in the argument. On the other hand, if I prove that something holds for an arbitrary element of a given class, then it will hold for any particular element of that class which can often be very useful.

MJD
  • 65,394
  • 39
  • 298
  • 580
ItsNotObvious
  • 10,883
2
  1. The proof of a universally-quantified (“for each $x$”) statement might begin with one of these:

    • Let $x$ be an arbitrary (i.e., any) real number greater than $7.$
    • Consider any (i.e., an arbitrary) real number $x$ greater than $7.$

    The idea is that this representative value is fixed during the current iteration of the remaining steps, and that each iteration of the proof's flow of logic is free to use a different value for $x.$

  2. The proof is eventually concluded by invoking Universal Introduction to convert that opening sentence to

    • For each $x{>}7,\ldots,$

    which finally refers generally to every element of $(7,\infty).$

  3. How to interpret “let... suppose” in mathematics?

    An overanalysis of the various synonyms of “for each"

ryang
  • 38,879
  • 14
  • 81
  • 179
1

Rather then arbitrary and fixed, lets look at something very similar where the difference is more pronounced. There is a very important distinction between uniform and fixed. A perfect example is convergence of functions.

Let $f_n$ be a sequence of functions of a set $X$. For each point $x\in X$, let $f$ be defined by $f(x)=\lim_{n\rightarrow \infty} f_n(x)$. That is, $f$ is the pointwise limit, and it is the limit for fixed $x$.

However, uniform convergence is much stronger, and requires that the limit is small for all $x$ simultaneously.

Very often things come up which are easy to prove for fixed $x$, but very difficult when we need uniformity in $x$.

Hope that helps,

Eric Naslund
  • 72,099
  • 1
    Although your answer is correct it adds on the confusion, especially since all the answers given so far (yours, Qiaochu's and 3Sphere's) are all valid. You should add some further clarification on the matter. – Asaf Karagila Jun 21 '11 at 16:20